上一页 1 ··· 4 5 6 7 8 9 10 11 12 13 下一页
摘要: 输入->判断正反是否一致->输出 // 11'43" #include <bits/stdc++.h> using namespace std; int main() { char ch; int n; cin >> ch >> n; vector<string> v; string emp; ge 阅读全文
posted @ 2024-08-06 00:49 Frodnx 阅读(6) 评论(0) 推荐(0)
摘要: // 1'4" #include <iostream> using namespace std; int main() { int a, b; cin >> a >> b; for(int i = 1; i <= a + b; ++ i) cout << "Wang!"; return 0; } 阅读全文
posted @ 2024-08-06 00:35 Frodnx 阅读(23) 评论(0) 推荐(0)
摘要: // 34" #include <iostream> using namespace std; int main() { cout << "2018\nwo3 men2 yao4 ying2 !"; return 0; } 阅读全文
posted @ 2024-08-06 00:05 Frodnx 阅读(8) 评论(0) 推荐(0)
摘要: // 1'16" #include <bits/stdc++.h> using namespace std; int main() { double a, b; cin >> a >> b; b /= 10; cout << fixed << setprecision(2) << a * b; re 阅读全文
posted @ 2024-08-05 23:07 Frodnx 阅读(14) 评论(0) 推荐(0)
摘要: 注意:每一个字符串都是L位的 // 10'30" #include <bits/stdc++.h> using namespace std; #define int long long void print(int x, int l) { vector<int> v; for(int i = 1; 阅读全文
posted @ 2024-08-05 23:04 Frodnx 阅读(14) 评论(0) 推荐(0)
摘要: // 10'42" #include <iostream> using namespace std; const int N = 110; int arr[N][N]; int brr[N][N]; int crr[N][N]; int main() { int x1, y1; cin >> x1 阅读全文
posted @ 2024-08-05 22:43 Frodnx 阅读(23) 评论(0) 推荐(0)
摘要: // 2'55" #include <iostream> using namespace std; int main() { int n; cin >> n; for(int i = 1; i <= n; ++ i) { string s; int huxi, maibo; cin >> s >> 阅读全文
posted @ 2024-08-05 22:30 Frodnx 阅读(8) 评论(0) 推荐(0)
摘要: x = int(input()) guanggun = 1 cnt = 1 while (guanggun % x) != 0 : guanggun = guanggun * 10 + 1 cnt = cnt + 1 print(guanggun // x,cnt) 阅读全文
posted @ 2024-08-05 22:26 Frodnx 阅读(8) 评论(0) 推荐(0)
摘要: // 37" #include <iostream> using namespace std; int main() { string s; cin >> s; cout << "Hello " << s; return 0; } 阅读全文
posted @ 2024-08-05 22:00 Frodnx 阅读(21) 评论(0) 推荐(0)
摘要: // 5'33" #include <iostream> using namespace std; int main() { int k; cin >> k; string s; int cnt = 1; while(cin >> s) { if(s == "End") break; if((cnt 阅读全文
posted @ 2024-08-05 21:58 Frodnx 阅读(6) 评论(0) 推荐(0)
上一页 1 ··· 4 5 6 7 8 9 10 11 12 13 下一页