题解 | 牛牛学说话之-整数
牛牛学说话之-整数
https://www.nowcoder.com/practice/df9ee533ef9544bfa382203c812d9b55
#include <iostream>
using namespace std;
int main() {
int n;
cin >> n;
cout << n << endl;
return 0;
}
// 64 位输出请用 printf("%lld")
牛牛学说话之-整数
https://www.nowcoder.com/practice/df9ee533ef9544bfa382203c812d9b55
#include <iostream>
using namespace std;
int main() {
int n;
cin >> n;
cout << n << endl;
return 0;
}
// 64 位输出请用 printf("%lld")
相关推荐