1127尼科彻斯定理(数学规律解决) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cstring>using namespace std;int m;int sum = 0;//这个是计算输出的数的…… 题解列表 2024年06月12日 0 点赞 0 评论 283 浏览 评分:0.0
1126字符串正反连接(数组正反各输出一遍) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cstring>using namespace std;int main(){ char s[100]; cin >…… 题解列表 2024年06月12日 0 点赞 0 评论 241 浏览 评分:0.0
1125委派任务(直接输出它给的案例就行啦) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ cout << "A,B,C,F,"; return 0;}…… 题解列表 2024年06月12日 2 点赞 2 评论 512 浏览 评分:0.0
编写题解 3010: 奇偶数之和 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;int main(){ int n…… 题解列表 2024年06月12日 0 点赞 0 评论 589 浏览 评分:9.9
编写题解 2544: N以内累加求和 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main() { int N,sum = 0; cin >> N; …… 题解列表 2024年06月12日 0 点赞 0 评论 449 浏览 评分:9.9
1124大小写问题(遍历一次就行) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[110]; gets(a); int sz=strlen(a)…… 题解列表 2024年06月12日 0 点赞 0 评论 417 浏览 评分:0.0
1123列出最简真分数序列(只要排除2和5的倍数的数就行啦) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ for (int i = 1; i < 40; i++) { if …… 题解列表 2024年06月12日 0 点赞 0 评论 332 浏览 评分:0.0
1122亲密数(一个for循环+一个求和函数解决) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;//这里是求一个数的因子之和//注意的是,它包括 1 ,但不包括本身int sushu(int…… 题解列表 2024年06月12日 0 点赞 0 评论 449 浏览 评分:0.0
1121 8除不尽的数(直接输出1993就行了) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ cout << "1993"; return 0;}…… 题解列表 2024年06月12日 0 点赞 0 评论 492 浏览 评分:0.0
1120水仙花数2(for循环求解) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cmath>using namespace std;int main(){ for (int i = 100; i …… 题解列表 2024年06月12日 0 点赞 0 评论 348 浏览 评分:0.0