#include void main() { int a,b,c,max; printf("Please input number:\n"); scanf("%d,%d.%d",&a,&b,&c); max=a; if(b>=max) max=b; if(c>max) max=c; printf("The bigest number is \n",max); }
cde