编写题解 2846: 统计数字字符个数 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;const int N = 1e7;ch…… 题解列表 2024年07月22日 0 点赞 0 评论 717 浏览 评分:9.9
编写题解 2853: 字符替换 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;int main(){ string…… 题解列表 2024年07月22日 0 点赞 0 评论 190 浏览 评分:9.9
编写题解 2749: Hello, World! 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ cout << "Hello world!" << endl;…… 题解列表 2024年07月23日 0 点赞 0 评论 473 浏览 评分:9.9
编写题解 1267: A+B Problem 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; while(cin>>a>>b)cout…… 题解列表 2024年07月23日 1 点赞 0 评论 575 浏览 评分:9.9
编写题解 2776: A*B问题 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; while(cin>>a>>b)cout…… 题解列表 2024年07月23日 0 点赞 0 评论 191 浏览 评分:9.9
素数筛选法(埃拉托斯特尼方法)的代码实现 摘要:首先,我们应当先复习一下原始的筛选法原理,先圈出2,并且划掉列表中2的倍数(即其他偶数),然后回到开始,圈出第一个没有被画掉的数,画掉剩下数表中他的所有倍数。重复这一过程足够多次数,剩下的没有被画掉的…… 题解列表 2024年07月23日 0 点赞 0 评论 266 浏览 评分:9.9
编写题解 1806: [编程基础]输入输出练习之第二个数字 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a,b,c; cin>>a>>b>>c…… 题解列表 2024年07月23日 0 点赞 0 评论 1077 浏览 评分:9.9
母牛的故事(数组做法,个人觉得用数组会更加形象点,比用函数会好) 摘要:#include<stdio.h>int main(){ int n; while(~scanf("%d",&n)){ if(n==0)break; int a[n]; …… 题解列表 2024年07月23日 0 点赞 0 评论 194 浏览 评分:9.9
优质题解,回归真神的初始途径 摘要:解题思路:注意事项:参考代码:a=int(input())b=a%2if b==0: print("even")else : print("odd")…… 题解列表 2024年07月23日 0 点赞 0 评论 417 浏览 评分:9.9
优质题解,回归真神的初始途径 摘要:解题思路:注意事项:参考代码:a=input()if ord(a)%2==0: print("NO")else: print("YES")…… 题解列表 2024年07月23日 0 点赞 0 评论 388 浏览 评分:9.9