[编程入门]数字的处理与判断 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;string n;int main(){ cin>>n; cout<<n.size…… 题解列表 2022年05月24日 0 点赞 0 评论 218 浏览 评分:0.0
[编程入门]最大公约数与最小公倍数 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long n,m;int main(){ cin>>n>>m; f…… 题解列表 2022年05月24日 0 点赞 0 评论 212 浏览 评分:0.0
编写题解2182:[编程入门]打印图案 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ printf(" *\n"); printf(" * *\n"); printf("****…… 题解列表 2022年05月24日 0 点赞 0 评论 465 浏览 评分:0.0
[编程入门]选择排序 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int a[15];//用数组可以少很多变量int main(){ for(int …… 题解列表 2022年05月24日 0 点赞 0 评论 272 浏览 评分:0.0
[编程入门]二维数组的转置 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long a[105];int main(){ for(int i…… 题解列表 2022年05月24日 0 点赞 0 评论 245 浏览 评分:0.0
[编程入门]矩阵对角线求和 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int a[5][5],x,y;//定义一个二维数组int main(){ for(…… 题解列表 2022年05月24日 0 点赞 0 评论 285 浏览 评分:0.0
编写题解 1003: [编程入门]密码破译 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char c1,c2,c3,c4,c5; scanf("%c%c%c%c%c",&c1,&c2,&c3,&…… 题解列表 2022年05月24日 0 点赞 0 评论 250 浏览 评分:0.0
编写题解 1005: [编程入门]温度转换 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ float c,f; scanf("%f",&f); c = 5*(f-32)/9; printf("c=…… 题解列表 2022年05月24日 0 点赞 0 评论 271 浏览 评分:0.0
编写题解 1951: 求平方和 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int A,B; scanf("%d%d",&A,&B); printf("%d",A*A + B*B); …… 题解列表 2022年05月24日 0 点赞 0 评论 251 浏览 评分:0.0
C语言训练-自由落体问题 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;double a,b=100,c=100;int main() { cin>>…… 题解列表 2022年05月24日 0 点赞 0 评论 326 浏览 评分:0.0