首页 > 【模板】牛牛学说话之-长整数
头像 lahm66
发表于 2026-01-01 21:20:57
import java.util.Scanner; // 注意类名必须为 Main, 不要有任何 package xxx 信息 public class Main { public static void main(String[] args) { Scanner in = 展开全文
头像 计算机253班夏晟
发表于 2026-01-16 11:00:00
#include <bits/stdc++.h> using namespace std; int main() { long long int n; cin>>n; cout<<n; return 0; }
头像 大方的杰克希望被offer砸中
发表于 2025-12-01 20:07:49
import sys n = input() print(n)
头像 牛客590379693号
发表于 2025-12-04 16:02:06
#include <stdio.h> int main() { long n; scanf("%ld",&n); printf("%ld",n); return 0; }
头像 L1LL
发表于 2026-02-08 18:57:06
#include <iostream> using namespace std; int main() { long long a; scanf("%lld", &a); printf("%lld", a); }
头像 江停2
发表于 2026-04-16 18:26:55
#include <stdio.h> int main() { long long a; scanf("%lld",&a); printf("%lld",a); }
头像 no_one777
发表于 2026-02-26 08:27:01
print(input())
头像 小7界
发表于 2026-05-12 14:23:08
import java.util.Scanner; // 注意类名必须为 Main, 不要有任何 package xxx 信息 public class Main { public static void main(String[] args) { Scanner in = 展开全文
头像 _氤氲_
发表于 2025-12-18 21:42:15
#include <stdio.h> int main() { long long int n; scanf("%lld",&n); printf("%lld",n); return 0; }

等你来战

查看全部