1953: 三位数分解 摘要:解题思路:慢慢分!注意事项:参考代码:#include<iostream> using namespace std; int main() { int a,b,c,d; ci…… 题解列表 2022年07月07日 0 点赞 0 评论 425 浏览 评分:7.3
1120: C语言训练-"水仙花数"问题2 摘要:#水仙花数 这道题与**1119C语言训练-"水仙花数"问题类似** 可以参考我的**1119文章** 按照题目要求输出所有水仙花数 水仙花数是三位数所以我们可以在100到999之间寻…… 题解列表 2022年07月11日 0 点赞 0 评论 490 浏览 评分:7.3
1553----笨小猴(适用于所有笨小猴)暴力遍历c++代码 摘要:解题思路:用for来回遍历数组模拟注意事项:多个for循环一步一步理清楚步骤,可能有些许繁琐,但最暴力。参考代码:#include<bits/stdc++.h> using namespace st…… 题解列表 2022年07月14日 0 点赞 0 评论 972 浏览 评分:7.3
简单的字符串 摘要:解题思路:用join函数即可注意事项:无参考代码:num=input() print(' '.join(num[::-1]))…… 题解列表 2022年07月14日 0 点赞 1 评论 575 浏览 评分:7.3
answer question 摘要:解题思路:anwer the whole question is answer like usual persnaly my own opinion is to caoculate the selut…… 题解列表 2022年07月16日 0 点赞 1 评论 162 浏览 评分:7.3
二级C语言-自定义函数 c++ 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;double a[10005];double b[10005];double ans…… 题解列表 2022年07月22日 0 点赞 1 评论 211 浏览 评分:7.3
简单的a+b(c++代码) 摘要:解题思路:注意事项:参考代码:解法一:#include <cstdio> int main(){ int a,b; while(scanf("%d%d",&a,&b)!=EOF)//也可以写成whil…… 题解列表 2022年07月27日 0 点赞 0 评论 613 浏览 评分:7.3
神奇的fansC++必过题解 摘要:解题思路:排序后判断注意事项:无参考代码:#include<bits/stdc++.h>using namespace std;int main() { bool d=1; int c=0,i,j,…… 题解列表 2022年07月29日 0 点赞 0 评论 321 浏览 评分:7.3
信息学奥赛一本通T1290-采药(01背包) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;const int MAX = 1001;int T, M;int t[MAX], …… 题解列表 2022年07月29日 0 点赞 0 评论 629 浏览 评分:7.3
列表储存运算 摘要:解题思路:第一行应付格式注意事项:参考代码:n=input() a=list(map(int,input().split())) b=0 for i in a: if i%2==0:…… 题解列表 2022年08月05日 0 点赞 0 评论 292 浏览 评分:7.3