题解 2781: 奇偶ASCII值判断 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ char c; cin>>c; if(in…… 题解列表 2023年12月23日 0 点赞 0 评论 173 浏览 评分:9.9
题解 2779: 输出绝对值 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ double a; cin>>a; pr…… 题解列表 2023年12月23日 0 点赞 0 评论 343 浏览 评分:9.9
矩阵转置 摘要:解题思路:注意事项:参考代码:n,m=map(int,input().strip().split())myList=[list(map(int,input().strip().split())) fo…… 题解列表 2023年12月23日 0 点赞 0 评论 296 浏览 评分:9.9
2861: 验证子串 摘要:解题思路:无注意事项:无参考代码:#include <bits/stdc++.h> using namespace std; int main() { string str ; …… 题解列表 2023年12月23日 0 点赞 0 评论 180 浏览 评分:9.9
题解 1764: 循环入门练习1 摘要:解题思路:利用高斯的求数方法,没想到对了。注意事项:直接输出结果就行参考代码:#include <bits/stdc++.h>using namespace std;int main(){ co…… 题解列表 2023年12月24日 0 点赞 0 评论 178 浏览 评分:9.9
完数的判断 摘要:#include<stdio.h>int main(){ int i,j,N; int l; int m; int a[100]; int sum=0; scanf…… 题解列表 2023年12月24日 0 点赞 0 评论 168 浏览 评分:9.9
二级C语言-同因查找(c语言版) 摘要:解题思路:求出10至1000之内能同时被2、3、7整除的数,并输出。用for循环让i从10到1000进行遍历,用if语句找到符合条件的数字,再用printf进行输出。注意事项:1:i要小于等于1000…… 题解列表 2023年12月24日 1 点赞 0 评论 295 浏览 评分:9.9
2908: 白细胞计数 摘要:``` #include using namespace std; const int N=310; double a[N]; int main(){ int n; cin>…… 题解列表 2023年12月24日 0 点赞 0 评论 173 浏览 评分:9.9
题解 2877: 同行列对角线的格子 摘要: #include using namespace std; const int N=1100; int a[N],b[N],x[N],y[N],n,i,j; …… 题解列表 2023年12月24日 0 点赞 0 评论 179 浏览 评分:9.9
扫雷游戏地雷数计算 摘要:解题思路:注意事项:参考代码:m,n=map(int,input().strip().split())myMatrix=[list(input().strip()) for a in range(m)…… 题解列表 2023年12月25日 0 点赞 0 评论 391 浏览 评分:9.9