题解 | 你能活多少秒
你能活多少秒
https://www.nowcoder.com/practice/e1d1bd99fee34b66ae3c777b74d555c8
#include <stdio.h>
int main()
{
long year = 3.156e7, age = 0;
scanf("%ld", &age);
printf("%ld", year * age);
return 0;
}
你能活多少秒
https://www.nowcoder.com/practice/e1d1bd99fee34b66ae3c777b74d555c8
#include <stdio.h>
int main()
{
long year = 3.156e7, age = 0;
scanf("%ld", &age);
printf("%ld", year * age);
return 0;
}
相关推荐