题解 | #你能活多少秒#
你能活多少秒
https://www.nowcoder.com/practice/e1d1bd99fee34b66ae3c777b74d555c8
#include <stdio.h>
int main() {
int a;
while (scanf("%d", &a) != EOF) { // 注意 while 处理多个 case
// 64 位输出请用 printf("%lld") to
long int sec = a * 31560000;
printf("%lld\n", sec);// 64 位输出请用 printf("%lld")
//printf("size of long int: %d\n", sizeof(long int));//结果是8,说明long int足够大
}
return 0;
}

