二级C语言-寻找矩阵最值-题解(C语言代码) 摘要:解题思路:备注都写了每行后面注意事项:参考代码:#include#include#define N 7//因为n最大为6,定义N为7符合题意int main(){ int n,max; i…… 题解列表 2020年11月20日 0 点赞 0 评论 1013 浏览 评分:9.3
[编程入门]数字的处理与判断-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:# include <stdio.h>int main(){ int num,b,count=0,i;//注意count初值为0 int a[5]; …… 题解列表 2020年11月20日 0 点赞 0 评论 387 浏览 评分:0.0
[编程入门]求和训练-题解(C语言代码) 摘要:#include<stdio.h> #include<math.h> int main(void) { int a, b, c; double sum = 0, i; scanf("%…… 题解列表 2020年11月20日 0 点赞 0 评论 645 浏览 评分:9.9
C语言训练-"水仙花数"问题2-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>int main (){ int i,a,b,c; for (i=100;i<1000;i++) {…… 题解列表 2020年11月20日 0 点赞 2 评论 420 浏览 评分:0.0
C语言训练-"水仙花数"问题1-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>int main (){ int n,a,b,c; scanf("%d",&n); a=n/1%10…… 题解列表 2020年11月20日 0 点赞 0 评论 330 浏览 评分:0.0
[递归]母牛的故事-题解(C语言代码) 摘要:新手,不喜勿喷。参考代码:#include int f(int n); int main(void) { int n, x; while (scanf("%d", &n) == 1) {…… 题解列表 2020年11月20日 0 点赞 0 评论 805 浏览 评分:9.9
[编程入门]数字的处理与判断-题解(C语言代码)挺简单的! 摘要:解题思路: 看一下代码中的注释!注意事项:参考代码:#include <stdio.h>int main (){ int i,j,b,n,t,c,d; scanf("%d",&n); d=…… 题解列表 2020年11月20日 0 点赞 0 评论 645 浏览 评分:0.0
二级C语言-等差数列-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main() { int a=2,b,n,sum=0; scanf("%d",&n); for(b=n;…… 题解列表 2020年11月20日 0 点赞 0 评论 312 浏览 评分:0.0
[编程入门]利润计算-题解(C语言代码) 摘要:解题思路:注意事项:参考代码: #include <stdio.h> int main() { int i,w; scanf("%d",&i); switch(i/100000) {…… 题解列表 2020年11月20日 0 点赞 0 评论 638 浏览 评分:0.0
[编程入门]成绩评定-题解(C语言代码) 摘要:解题思路:注意事项:参考代码: 方法1,#includeint main(){ int x,y; scanf("%d",&x,&y); if…… 题解列表 2020年11月20日 0 点赞 0 评论 503 浏览 评分:0.0