#include <stdio.h>
int main()
{
float a;
scanf("%f",&a);
printf("The integer variant of %0.2f is=%0.0f",a,a);
return 0;
}
12.01
The integer variant of 12.01 is=12
23.15
The integer variant of 23.15 is=23
Question 1 Correct Mark 2.00 out of 2.00 Flag question Question text A company has had several incidents involving users downloading unauth...
No comments:
Post a Comment