编写题解 3001: 整数的和 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b,c; cin>>a>>b>>c; c…… 题解列表 2023年12月23日 0 点赞 0 评论 243 浏览 评分:0.0
题解 2781: 奇偶ASCII值判断 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ char c; cin>>c; if(in…… 题解列表 2023年12月23日 0 点赞 0 评论 210 浏览 评分:9.9
题解 2787: 有一门课不及格的学生 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>//万能头文件using namespace std;int main(){ int a,b; cin>>a>>b;…… 题解列表 2023年12月23日 0 点赞 0 评论 211 浏览 评分:0.0
题解 2779: 输出绝对值 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ double a; cin>>a; pr…… 题解列表 2023年12月23日 0 点赞 0 评论 402 浏览 评分:9.9
题解 2784: 收集瓶盖赢大奖 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a,b; cin>>a>>b; …… 题解列表 2023年12月23日 0 点赞 0 评论 210 浏览 评分:0.0
分解质因数 摘要:解题思路: 1.找出在(<b)的素数,素数会是因子 2.第一个for循环中循环需要分解的每一个因数 3.第二个for循环找到被分解的因数其每一个因子,不断往下循环找完为止参考代码:a…… 题解列表 2023年12月23日 0 点赞 0 评论 189 浏览 评分:0.0
矩阵加法 摘要:解题思路:注意事项:参考代码:m,n=map(int,input().split())myList1=[list(map(int,input().split())) for t in range(m)…… 题解列表 2023年12月23日 0 点赞 0 评论 240 浏览 评分:0.0
c语言for简单循环 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char a[5]; int i; for (i = 0;i<5;i++) { …… 题解列表 2023年12月23日 1 点赞 1 评论 181 浏览 评分:0.0
矩阵转置 摘要:解题思路:注意事项:参考代码:n,m=map(int,input().strip().split())myList=[list(map(int,input().strip().split())) fo…… 题解列表 2023年12月23日 0 点赞 0 评论 329 浏览 评分:9.9
图像旋转 摘要:解题思路: 和求转置差不多,添加列元素时,逆序一下注意事项:参考代码:n,m=map(int,input().strip().split())myList=[list(map(int,input().…… 题解列表 2023年12月23日 0 点赞 0 评论 265 浏览 评分:0.0