二级C语言-寻找矩阵最值 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int n,a[100][100],i,j,max,b=0,c=0; s…… 题解列表 2022年10月30日 0 点赞 0 评论 302 浏览 评分:0.0
二级C语言-成绩归类 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int i=0, j=0, k=0; int score; s…… 题解列表 2022年10月30日 0 点赞 0 评论 349 浏览 评分:0.0
二级C语言-阶乘公式求职 摘要:解题思路:注意事项:参考代码:#include<stdio.h>double fact(int n){ int i; double k=1; for(i=1;i<=n;i++) …… 题解列表 2022年10月30日 0 点赞 0 评论 326 浏览 评分:0.0
勾股定理的傻子应用 摘要:解题思路:傻子算法用if else有手就行的注意事项:慢慢来参考代码:#include<stdio.h>int main(){ int a,b,c; scanf("%d%d%d",&a,&b,&c);…… 题解列表 2022年10月31日 0 点赞 0 评论 419 浏览 评分:0.0
The 3n + 1 problem(c语言代码) - 解决33%的错误 摘要:注意事项:i,j的输入大小顺序不确定因此要比较i,j并交换i,j要提前打印,如果输入时i>j,交换后,i,j的值就交换了,打印时就出错n = n*3+1可能导致溢出,因此直接将i,j,n全设为long…… 题解列表 2022年10月31日 0 点赞 0 评论 277 浏览 评分:0.0
编写题解 2920: 分数线划定 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>struct volun{ int k; int s;};int main(){ in…… 题解列表 2022年10月31日 0 点赞 0 评论 485 浏览 评分:0.0
敲简单C语言代码!!! 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,j,n,r,p,q,k,w=0; char a[100][100]; while(~sc…… 题解列表 2022年10月31日 0 点赞 0 评论 308 浏览 评分:0.0
敲简单C语言代码!!! 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[100][100]; a[0][0]=1; int n; scanf ("%d",&…… 题解列表 2022年10月31日 0 点赞 0 评论 291 浏览 评分:0.0
自定义函数之字符串连接 摘要:解题思路:定义三个数组,两个数组存放输入的数组,最后一个数组存放最终的数组注意事项:利用string函数库中strlen函数计算出个数组中的元素个数参考代码:# include <stdio.h># …… 题解列表 2022年11月01日 0 点赞 1 评论 285 浏览 评分:0.0
蓝桥杯算法提高VIP-打水问题 摘要:解题思路:注意事项:参考代码:import java.util.Arrays; import java.util.Scanner; public class Main { publi…… 题解列表 2022年11月01日 0 点赞 0 评论 333 浏览 评分:0.0