最长最短单词(用二维数组存储,把每个单词分隔开来,就好做多了) 摘要:参考代码: ```c #include #include int main() { char a[201][101]; int k=0; int max=0,max_index=…… 题解列表 2023年12月20日 0 点赞 0 评论 192 浏览 评分:9.9
第一个HelloWorld程序(c语言代码) 摘要:解题思路:输出HelloWorld,我们直接调用注意事项:1:*号的数量必须要一致,不能多也不能少。2:每进行一次printf,需要进行一次换行(\n)。3:HelloWorld后面有一个!这个!不能…… 题解列表 2023年12月21日 1 点赞 0 评论 303 浏览 评分:9.9
3024: 判断整除 摘要:解题思路: 搜索回溯计算数字序列,注意事项: 在递归之后, 恢复res值以做下次计算参考代码:#include<iostream> #include<algorithm> using namesp…… 题解列表 2023年12月21日 0 点赞 0 评论 168 浏览 评分:9.9
自由下落的距离计算 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ float M,N,a,b,sum; scanf("%f %f",&…… 题解列表 2023年12月21日 0 点赞 0 评论 116 浏览 评分:9.9
题解 2773: 计算线段长度 摘要:解题思路:注意事项:参考代码:#inalude <bitz/stdc+-.h>uerng namespace std;doqble xa,ya,xb,yb,c;int maie(){ cin>>…… 题解列表 2023年12月21日 0 点赞 0 评论 194 浏览 评分:9.9
题解 2759: 打印字符 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a; cin>>a; putchar(a); …… 题解列表 2023年12月21日 0 点赞 0 评论 182 浏览 评分:9.9
2885: 矩阵转置 摘要:``` #include using namespace std; const int N=110; int a[N][N]; int main(){ int n,m; cin>>n…… 题解列表 2023年12月22日 0 点赞 0 评论 180 浏览 评分:9.9
题解 2782: 整数大小比较 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a,b; cin>>a>>b; …… 题解列表 2023年12月23日 0 点赞 0 评论 227 浏览 评分:9.9
题解 1006: [编程入门]三个数找最大值 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a,b,c; cin>>a>>b>>c…… 题解列表 2023年12月23日 0 点赞 0 评论 319 浏览 评分:9.9
题解 2768: 与圆相关的计算 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ double r; scanf("%lf",&r); pr…… 题解列表 2023年12月23日 0 点赞 0 评论 442 浏览 评分:9.9