LULU——题解 1015: [编程入门]求和训练 摘要:#include<stdio.h>#include<iostream>#include<string.h>using namespace std;int add1(int n1){ int i; in…… 题解列表 2022年05月10日 0 点赞 0 评论 394 浏览 评分:0.0
LULU——题解 1012: [编程入门]字符串分类统计 摘要:#include<stdio.h>#include<iostream>#include<string.h>using namespace std;int main(){ int num=0,lette…… 题解列表 2022年05月10日 0 点赞 0 评论 597 浏览 评分:9.9
敲七游戏C++(没对的进来) 摘要:解题思路:不对的99%都是漏了带有7的数字首先是7的倍数,n%7就可以得出;个位:只有7且恰好是7的倍数;十位:x7、7x(以下x均表示任意1-9) x7可以求末尾就行n%10=…… 题解列表 2022年05月10日 0 点赞 0 评论 2071 浏览 评分:6.8
数列问题C++超简单 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n; int a[36]; a[1]=3;a[2]=…… 题解列表 2022年05月10日 0 点赞 0 评论 591 浏览 评分:0.0
数列有序C++超简单! 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n,m,a[101]; while(cin>>n>>…… 题解列表 2022年05月10日 0 点赞 0 评论 423 浏览 评分:0.0
平方和与立方和C++超简单 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n,m,x,y; while(scanf("%d%d…… 题解列表 2022年05月10日 0 点赞 0 评论 1089 浏览 评分:7.3
小写转大写超简单! 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ char s[81];//保存输入的字符串 …… 题解列表 2022年05月10日 0 点赞 0 评论 447 浏览 评分:0.0
找到经过顺序调整的关键词(C++代码) 摘要:注意事项:要考虑到可无限次输入参考代码:#include<iostream>#include<string>#include<vector>#include<sstream>#include<algo…… 题解列表 2022年05月10日 0 点赞 0 评论 459 浏览 评分:0.0
二级C语言-公约公倍 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long a,b;int main(){ cin>>a>>b; for(i…… 题解列表 2022年05月10日 0 点赞 0 评论 373 浏览 评分:0.0
1196: 去掉空格 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;string s;int yw;int main(){ while(getline(…… 题解列表 2022年05月10日 0 点赞 0 评论 325 浏览 评分:0.0