[编程入门]矩阵对角线求和 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int a[3][3]; for(int i=0…… 题解列表 2023年05月17日 0 点赞 0 评论 378 浏览 评分:0.0
2876: 矩阵交换行 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args…… 题解列表 2023年05月17日 1 点赞 0 评论 455 浏览 评分:0.0
[编程入门]自定义函数之字符类型统计 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;void count(string s){ int a=s.size(); …… 题解列表 2023年05月17日 0 点赞 0 评论 347 浏览 评分:0.0
[编程入门]实数的打印 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ double a; cin>>a; for…… 题解列表 2023年05月17日 0 点赞 0 评论 449 浏览 评分:0.0
1022筛选N以内的素数 摘要:解题思路:注意事项:参考代码:h=int(input())for i in range(2,h+1): for m in range(2,i): if i%m==0: …… 题解列表 2023年05月18日 0 点赞 0 评论 430 浏览 评分:0.0
题目 1000: [竞赛入门]简单的a+b解答 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; while(cin>>a>>b) cou…… 题解列表 2023年05月18日 0 点赞 0 评论 434 浏览 评分:0.0
非常简单(看不懂打我) 摘要:解题思路:输入后将循环倒着之后输出就好了注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int a[15]; for(…… 题解列表 2023年05月18日 0 点赞 0 评论 379 浏览 评分:0.0
蓝桥杯2014年第五届真题-分糖果-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; scanf("%d",&n); int a[100]={0},b[n]; int flag=1,c…… 题解列表 2023年05月18日 0 点赞 0 评论 374 浏览 评分:0.0
题目 1183: 人见人爱A+B题解 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main(){ int ah,am,as,bh,bm,bs,ch,c…… 题解列表 2023年05月19日 0 点赞 0 评论 437 浏览 评分:0.0
题目 1186: 倒杨辉三角形题解 摘要:解题思路:注意事项:注意格式:setw((j==1?index-i+1:2)*3)参考代码:#include<iostream> #include<iomanip> using namespace…… 题解列表 2023年05月19日 0 点赞 0 评论 564 浏览 评分:0.0