写题解 1097: 蛇行矩阵 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#define max 100int main(){ int num[max][max]; int n,i=1; scanf…… 题解列表 2025年02月27日 0 点赞 0 评论 239 浏览 评分:0.0
题解 1093: 字符逆序 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include<string.h>int main(){ int i; char …… 题解列表 2025年02月27日 0 点赞 0 评论 249 浏览 评分:0.0
题解 1069: 二级C语言-寻找矩阵最值 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int i,j,n; scanf("%d",&…… 题解列表 2025年02月27日 1 点赞 0 评论 286 浏览 评分:10.0
题解 1030: [编程入门]二维数组的转置 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a[3][3]={0},i,j; &nb…… 题解列表 2025年02月26日 0 点赞 0 评论 551 浏览 评分:0.0
题解 2006: 寻找奇整数 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int b,k=0,i,a[15]={3,7,5,13,25,45,78,23,8,33,9,19…… 题解列表 2025年02月26日 0 点赞 0 评论 76 浏览 评分:0.0
用C++求位数 摘要:解题思路:首先需要定义数字类型,由题目可知是整数型(int),然后观察题目可得并没有给出具体数字,那么就是说这个是对所有 三位数成立,我们需要手动输入数字,代码中我们用a表示;通过数学计算可拆分位数。…… 题解列表 2025年02月26日 1 点赞 0 评论 345 浏览 评分:0.0
最小函数值(minval) 不用优先队列玄学做法 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h"usingnamespacestd;#definell&nb…… 题解列表 2025年02月26日 0 点赞 0 评论 139 浏览 评分:0.0
题解 1864: 数日子 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ printf("200");  …… 题解列表 2025年02月26日 0 点赞 0 评论 108 浏览 评分:0.0
C语言简单解法 摘要:此题难度不大,重要的是要知道冒泡排序的格式#includevoid num(long long a[],int b){ for (int i=0;i…… 题解列表 2025年02月26日 0 点赞 0 评论 616 浏览 评分:10.0
C语言简单解法 摘要:此题是经典的求素数的题,需要知道素数的验证方法,且结合循环来做,同样也考察基础#include#includevoid num(long long n){ for(long …… 题解列表 2025年02月26日 1 点赞 0 评论 600 浏览 评分:10.0