[编程入门]二维数组的转置(C语言) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[3][3],i,j,t; for(i=0;i<3;i++){ for(j=…… 题解列表 2023年11月19日 0 点赞 0 评论 306 浏览 评分:0.0
救援(总时间) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int n,x,y,num; double distance; double t…… 题解列表 2023年11月19日 1 点赞 0 评论 272 浏览 评分:0.0
2808: 买房子 摘要:解题思路:注意事项:参考代码:n,k = map(int,input().split())year=0money=200k=k*0.01for i in range(1,22): if i>20:…… 题解列表 2023年11月19日 0 点赞 0 评论 312 浏览 评分:0.0
1151的题解c++ 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n,b=1; cin>>n; fo…… 题解列表 2023年11月19日 0 点赞 0 评论 246 浏览 评分:0.0
题解 1141: C语言训练-百钱百鸡问题 摘要: #include using namespace std; int main(){ int x,y,z; for(x=0;x…… 题解列表 2023年11月19日 0 点赞 0 评论 267 浏览 评分:0.0
解 3015: 幂的末尾 摘要: #include using namespace std; int main(){ int a,b,c,d; for(int i=100;i…… 题解列表 2023年11月19日 0 点赞 0 评论 259 浏览 评分:0.0
2096: 打印平行四边形 摘要:``` #include using namespace std; int main(){ int n; cin>>n; for( int i=1;i…… 题解列表 2023年11月19日 0 点赞 0 评论 227 浏览 评分:0.0
]数组插入处理 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,a[10],i; for(i=0;i<9;i++) { scanf(…… 题解列表 2023年11月19日 0 点赞 0 评论 215 浏览 评分:0.0
题解 2096: 打印平行四边形 摘要: #include using namespace std; int main(){ int n,i; cin>>n; for(i=1;i…… 题解列表 2023年11月19日 0 点赞 0 评论 299 浏览 评分:0.0
题解 1022: [编程入门]筛选N以内的素数 摘要: #include using namespace std; int main(){ int a,b,sh,i; cin>>a; for(…… 题解列表 2023年11月19日 0 点赞 0 评论 220 浏览 评分:0.0