Arif planned to make a room cleaning robot for his college mini project competition.
#include <stdio.h>
int main()
{float length,width,area;
scanf("%f",&length);
scanf("%f",&width);
area=length*width;
printf("%0.2f sq.ft",area);
return 0;
}
Arif planned to make a room cleaning robot for his college mini project competition.
#include <stdio.h>
int main()
{float length,width,area;
scanf("%f",&length);
scanf("%f",&width);
area=length*width;
printf("%0.2f sq.ft",area);
return 0;
}
0 Comments
if you have any doubt, plz let me know