题解 | 你能活多少秒
你能活多少秒
https://www.nowcoder.com/practice/e1d1bd99fee34b66ae3c777b74d555c8
#include <iostream>
#include<cmath>
using namespace std;
int main() {
int age;
cin >> age;
long long seconds = age * 3.156*pow(10,7);
cout << seconds;
}
// 64 位输出请用 printf("%lld")