大虾们帮我分析分析一下这题
题目是这样:一年约有3.156×10的7次方,编写一个程序,要求输入你的年龄,然后显示该年龄合多少秒。
我是这样编的
#include<stdio.h>
int main(void)
{
int age;
double seconds;
printf("Input age ");
scanf("Input age %d",&age);
seconds=age*3.156e7;
printf("This is the age of syntheric seconds %ld .\n",seconds);
return 0;
}
我知道有很多错误,希望高手指点指点,说得详细点我是新手
看数据类型都看晕了 特别是浮点型的 晕啊