问题:一年约有 3.156×107 s,要求输入您的年龄,显示该年龄合多少秒。
数据范围:
int main()
{
long int a=0;
scanf("%d",&a);
printf("%ld",(long int)(a*3.156e7));
return 0;
}
#include <stdio.h> int main() { int a; float b=3.156e7; scanf("%d",&a); printf("%0.f",a*b); return 0; }
#include <stdio.h> int main() { int age,sec; int long s; sec = 3.156e7; scanf("%d",&age); while(0 < age <= 200) { s = sec * age; printf("%ld",s); break; } return 0; }