与指定数字相同的数的个数 摘要:int main(){ int N = 0; int m = 0; scanf("%d %d", &N, &m); //读取整数 int count = 0; // 计…… 题解列表 2025年06月16日 0 点赞 0 评论 63 浏览 评分:10.0
新手乘方计算 摘要:# 这里使用的是for循环int main(){ int a = 0;int n = 0; scanf("%d %d", &a, &n); //判断n是否等于0 …… 题解列表 2025年06月16日 0 点赞 0 评论 72 浏览 评分:10.0
代码要求基础,新手就能懂 摘要:解题思路:自己看注意事项:没有参考代码:#include<stdio.h>#include<string.h>int main(){ int i; char str[3][10…… 题解列表 2025年06月17日 2 点赞 1 评论 260 浏览 评分:10.0
分数线的划定很容易,就像她跟我划清界限一样 摘要:#include <stdio.h>#include <math.h>typedef struct{ &nbs…… 题解列表 2025年06月17日 3 点赞 1 评论 301 浏览 评分:10.0
题解 2749: Hello, World!史上最简单题 摘要:解题思路:注意事项:参考代码:#includeusing namespace std;int main(){ cout << "Hello world!…… 题解列表 2025年07月15日 1 点赞 0 评论 163 浏览 评分:10.0
尼科彻斯定理 纯数学方法 保姆级教程 摘要:解题思路:找左边界 例如 案例当中的m=13 m的立方 三个m相乘 相当于 m个m*m相加 答案说连续的奇数所以可以分成两种情况讨论奇数的情况是m*m就是答案的那串…… 题解列表 2025年07月22日 1 点赞 0 评论 43 浏览 评分:10.0
2936:简单算数表达式求值;;;;;;题解 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int s(int a,char c,int b){&nbs…… 题解列表 2025年07月24日 1 点赞 0 评论 33 浏览 评分:10.0
1032:[编程入门]自定义函数之字符串连接 摘要:解题思路:注意事项:要写括号参考代码:#include<bits/stdc++.h>using namespace std;int q(string a,string b){ …… 题解列表 2025年07月24日 1 点赞 1 评论 53 浏览 评分:10.0
你就说过没过吧 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ cout<<&quo…… 题解列表 2025年07月25日 1 点赞 1 评论 42 浏览 评分:10.0
层次递进,绝对好懂,不懂你抽我 摘要:解题思路:先拿2,3举例,2*2*2=8=3+5 3*3*3=27=7+9+11观察第一个数和最后一个数,范围在什么区间呢?13*13*13=2197=157+1…… 题解列表 2025年07月26日 1 点赞 0 评论 39 浏览 评分:10.0