题解 | #你能活多少秒#
你能活多少秒
https://www.nowcoder.com/practice/e1d1bd99fee34b66ae3c777b74d555c8
#include <stdio.h>
int main() {
int a;
long long b,c=3.156e7;//使用科学计数法
scanf("%d",&a);
b=a*c;
printf("%lld\n",b); //长长整型,防止越界
return 0;
}

