自定义函数之数字后移(C语言,简单for循环) 摘要: #include void deal(int n, int m, int a[999]); int main() { int n, …… 题解列表 2022年07月17日 0 点赞 0 评论 313 浏览 评分: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 评论 296 浏览 评分:0.0
挺简单的一个题 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n, a,b; cin>>n;…… 题解列表 2022年07月17日 0 点赞 0 评论 317 浏览 评分: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 评论 356 浏览 评分:0.0
绝对值排序(C语言) 摘要: #include int main() { int i, a[101], n; while(scanf("%d", &n)!=EOF) { fo…… 题解列表 2022年07月18日 0 点赞 0 评论 435 浏览 评分:0.0
#C++1870——统计字符 摘要:#include <iostream> #include <cstring> #include <algorithm> using namespace std; int a[26],b[26]…… 题解列表 2022年07月18日 0 点赞 0 评论 396 浏览 评分: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 评论 340 浏览 评分:0.0
字符串编码(C++) 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ string str; cin >> str; int …… 题解列表 2022年07月18日 0 点赞 0 评论 447 浏览 评分:0.0
[编程入门]选择排序 摘要:#include<stdio.h> int main() { int a[10],min,key,i,j; for(i=0;i<10;i++) { scanf("%d …… 题解列表 2022年07月19日 0 点赞 0 评论 212 浏览 评分:0.0
蓝桥杯算法提高VIP-复数求和(参考了上一题优质题解的代码改的,记录在案) 摘要:#include #include typedef struct plural { int real; int imag; struct plural *…… 题解列表 2022年07月19日 0 点赞 0 评论 270 浏览 评分:0.0