题解 | #你能活多少秒#
你能活多少秒
https://www.nowcoder.com/practice/e1d1bd99fee34b66ae3c777b74d555c8
#include <stdio.h>
#include<math.h>
#define E (3.156)*(10*10*10*10*10*10*10)
int main()
{
int age;
long a;
scanf("%d",&age);
a=age*E;
printf("%ld\n",a);
return 0;
}
