输出M到N的数-题解(C语言代码) 摘要:解题思路:注意事项:注意M=N这种情况;参考代码:#include <stdio.h>int main(){ int M,N,i; scanf("%d%d",&M,&N); if(M<N) for(i…… 题解列表 2020年12月01日 0 点赞 0 评论 514 浏览 评分:8.0
分段计算-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int x,y; scanf("%d",&x); if(x<3) y=2*x; if(x>=3 && x<20…… 题解列表 2020年12月01日 0 点赞 0 评论 426 浏览 评分:0.0
求阶梯水费-题解(C语言代码) 摘要:解题思路:注意事项:注意包含15!!!!!参考代码:#include <stdio.h>int main(){ int a,b; scanf("%d",&a); if(a<=15) b=2*a; if…… 题解列表 2020年12月01日 0 点赞 0 评论 415 浏览 评分:0.0
求平均工资-题解(C语言代码) 摘要:解题思路:注意事项:注意整数;参考代码:#include <stdio.h>int main(){ int a[100], n,i,sum,ave; scanf("%d",&n); sum=0; fo…… 题解列表 2020年12月01日 0 点赞 0 评论 602 浏览 评分:0.0
分类计算-题解(C语言代码)加油!!!! 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a,b,c,d; scanf("%d%d",&a,&b); c=a*a+b*b; d=a+b; if(…… 题解列表 2020年12月01日 0 点赞 0 评论 321 浏览 评分:0.0
[编程入门]宏定义之找最大数-题解(C语言代码) 摘要:解题思路:宏定义和函数的返回值是最大值输出注意事项:宏定义用?:操作符,函数用if语句,也可以用?:求参考代码:#include<stdio.h> #define max(x,y,z) (x>y?x…… 题解列表 2020年12月01日 0 点赞 0 评论 624 浏览 评分:9.9
[编程入门]数组插入处理-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:int a[10]; int i,j,k,num,t; for(i = 0; i < 9; i ++) { scanf("%d",&a[i]); } scanf("%…… 题解列表 2020年12月01日 0 点赞 0 评论 406 浏览 评分:0.0
求中间数-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a,b,c; scanf("%d%d%d",&a,&b,&c); if(a>b && b>c || c…… 题解列表 2020年12月01日 0 点赞 0 评论 375 浏览 评分:0.0
[编程入门]有规律的数列求和-题解(C语言代码) 摘要:解题思路:在判断输入的数是否小于前一个数,小于则先把后面数组中的数向后移一位,再把number输入注意事项:定义一个数t来暂时储存数参考代码:#include <stdio.h>int main(){…… 题解列表 2020年12月01日 0 点赞 0 评论 436 浏览 评分:0.0
[编程入门]50%错误 摘要:解题思路:50%错误,,不知道哪有问题注意事项:参考代码:lst=list(input().split()) s=" " lst2=[] for i in lst: if "a"<=i…… 题解列表 2020年12月01日 0 点赞 2 评论 459 浏览 评分:0.0