题解 | #你能活多少秒#
你能活多少秒
https://www.nowcoder.com/practice/e1d1bd99fee34b66ae3c777b74d555c8
#include <stdio.h>
int main() {
long long age =0;
scanf("%lld",&age);
//int year_m =60*60*24*365;// 一年的秒数31,536,000
long long year_m = 31560000;
age = year_m * age;
printf("%lld\n",age);
return 0;
}


华为HUAWEI成长空间 651人发布