|
|
#2
rjsp2019-10-13 12:11
|
#include <stdio.h>
#include <stdlib.h>
int main()
{
float a,b,c;
a=10.1;
b=10;
c=a*(b*b);
printf("%d",c);
system("pause");
return 0;
}
输出结果为什么是536870912