自定义函数打印100-200的素数个数和素数 摘要:解题思路:自定义函数is_prime判断n能否被n-1个数整除根据函数返回的值来判断是否是素数注意事项:!return 0的能力比break强, return 0可以彻底结束一个函数,break只能跳…… 题解列表 2023年11月04日 0 点赞 0 评论 613 浏览 评分:9.9
2801: 奇数求和 摘要:``` #include using namespace std; int main(){ int m,n,sum=0;//sum这里要赋值0 cin>>m>>n; for(int …… 题解列表 2023年11月04日 0 点赞 0 评论 311 浏览 评分:9.9
【编程入门】利润计算(比较容易懂) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int x,w; scanf("%d",&x); i…… 题解列表 2023年11月04日 0 点赞 0 评论 356 浏览 评分:9.9
[编程入门]分段函数求值 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int x,y; scanf("%d",&x); if(x<1…… 题解列表 2023年11月04日 0 点赞 0 评论 397 浏览 评分:9.9
for循环c语言版 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,n; int ax=1; scanf("%d %d",&a,&n); if(…… 题解列表 2023年11月04日 0 点赞 0 评论 508 浏览 评分:9.9
字符串分类统计 摘要:解题思路:注意事项:这段代码没有考虑输入字符串中的特殊字符、标点符号等情况。它只会统计字母、数字、空格和其他字符的个数。参考代码:#include <stdio.h> #include <strin…… 题解列表 2023年11月04日 0 点赞 0 评论 317 浏览 评分:9.9
求偶数和标准方法 摘要:解题思路:定义数组储存数据,然后遍历,判断是否是偶数,累加。注意事项:请好好学习,谢谢;参考代码://求偶数和#include <stdio.h>int main(){ int i, n, su…… 题解列表 2023年11月04日 1 点赞 0 评论 510 浏览 评分:9.9
利用等差数列求和公式解题 摘要:解题思路:利用等差数列求和公式,sn=na1+n(n+1)/2 * d注意事项:天冷了,请多穿衣服。参考代码://等差数列#include <stdio.h>int main(){ int n…… 题解列表 2023年11月04日 0 点赞 0 评论 461 浏览 评分:9.9
自定义函数判断闰年 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int is_prime_year(int x) { if((x%4==0&&x%100!=0)||x%400==0)…… 题解列表 2023年11月05日 0 点赞 0 评论 325 浏览 评分:9.9
非递归方法解决最长公共子序列 摘要:解题思路:使用二维数组来记录相等的情况,根据左边和上方的数字以及相等的情况来为二维数组赋值注意事项:起始项为【1,1】,所以要i-1,j-1;参考代码:#include <iostream>#incl…… 题解列表 2023年11月05日 0 点赞 0 评论 453 浏览 评分:9.9