【排列组合】统计素数和偶数个数 摘要:解题思路:理解题意:给一个数组,例如 int[]arr={1,3,3,3,2,2,4}下标集合I={0,1,2,3,4,5,6}R1是I下标集合的一个子集例如{0,1,2,5,6}或者{2,4,5}这…… 题解列表 2024年01月27日 1 点赞 0 评论 789 浏览 评分:9.3
结构体之时间设计 摘要:解题思路:先根据年份判断平闰年调用函数实现天数判断最后返回天数即可注意事项:在定义类的时候不能定义为已有的函数名称,否则报错参考代码:#include<iostream>using namespace…… 题解列表 2024年01月27日 0 点赞 0 评论 188 浏览 评分:0.0
多边形内角和 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,j,o,sum=0; scanf("%d", &n); j = (n - 2) * 180; for…… 题解列表 2024年01月27日 0 点赞 0 评论 141 浏览 评分:0.0
1151: C语言训练-计算一个整数N的阶乘 摘要:###[题目传送门](https://www.dotcpp.com/oj/problem1151.html) ------------ ###思路 用一个循环把sum从一乘到n,最后输出…… 题解列表 2024年01月27日 0 点赞 0 评论 339 浏览 评分:9.9
完数的判断 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ int a,s=0; cin >> a; for(int…… 题解列表 2024年01月27日 0 点赞 0 评论 124 浏览 评分:0.0
水仙花数判断 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int g,s,b; for(int i=100;i<10…… 题解列表 2024年01月27日 0 点赞 0 评论 153 浏览 评分:0.0
求和训练(C++) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<iomanip>using namespace std;int main(){ int a,b,c; c…… 题解列表 2024年01月27日 0 点赞 0 评论 184 浏览 评分:0.0
阶乘求和(C++解决办法) 摘要:解题思路:注意事项:第一种:数值溢出的情况,第二:循环递归的思路参考代码:#include<iostream>using namespace std;int main(){ int n; …… 题解列表 2024年01月27日 1 点赞 0 评论 316 浏览 评分:9.9
[编程入门]阶乘求和的Python解法 摘要:解题思路:注意事项:参考代码:n=int(input())Sn=0a=1for i in range(1,n+1): a*=i Sn+=aprint(Sn)…… 题解列表 2024年01月27日 0 点赞 0 评论 234 浏览 评分:0.0
Sn的公式求和(c++解决办法) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n; cin>>n; int sn=0; …… 题解列表 2024年01月27日 0 点赞 0 评论 229 浏览 评分:9.9