简单1002: [编程入门]三个数最大值 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>//万能头文件using namespace std;int main(){ int a,b,c; cin>>a>>b>>c…… 题解列表 2022年07月17日 0 点赞 0 评论 468 浏览 评分:0.0
其实就是一个人简单的循环 摘要:#include<bits/stdc++.h>using namespace std;int main(){ int n,a; cin>>n; for(int i=1;;i++) …… 题解列表 2022年07月17日 0 点赞 0 评论 309 浏览 评分:0.0
自定义函数之整数处理(C语言,简单数组) 摘要: #include void enter(int a[10]); void deal(int a[10]); void out(int a[10]);…… 题解列表 2022年07月17日 0 点赞 0 评论 344 浏览 评分:0.0
自定义函数之数字后移(C语言,简单for循环) 摘要: #include void deal(int n, int m, int a[999]); int main() { int n, …… 题解列表 2022年07月17日 0 点赞 0 评论 307 浏览 评分:0.0
1046简简单单 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main() { int m,n,a[200],i=0,j=0,c=0; sca…… 题解列表 2022年07月17日 0 点赞 0 评论 292 浏览 评分:0.0
挺简单的一个题 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n, a,b; cin>>n;…… 题解列表 2022年07月17日 0 点赞 0 评论 313 浏览 评分:0.0
1055: 二级C语言-进制转换(自己编写相关函数) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(void){ int N; int a[100]; int j; scanf("%d",&N); a[0]=N%8; …… 题解列表 2022年07月17日 0 点赞 0 评论 349 浏览 评分:0.0
绝对值排序(C语言) 摘要: #include int main() { int i, a[101], n; while(scanf("%d", &n)!=EOF) { fo…… 题解列表 2022年07月18日 0 点赞 0 评论 430 浏览 评分:0.0
#C++1870——统计字符 摘要:#include <iostream> #include <cstring> #include <algorithm> using namespace std; int a[26],b[26]…… 题解列表 2022年07月18日 0 点赞 0 评论 391 浏览 评分:0.0
编写题解 1954: 话费计算 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#define p 50#define a 0.4int main(){ int n; float m; scanf("%d",&n);…… 题解列表 2022年07月18日 0 点赞 0 评论 335 浏览 评分:0.0