1056666666C语言你会知道什么叫痛苦 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main (){ float C,F;scanf("%f",&F); C=5*(F-32)/9;printf("%.2f",C…… 题解列表 2021年11月05日 0 点赞 0 评论 217 浏览 评分:0.0
105555579 C语言 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main (){ int x;scanf("%d",&x); printf("%o",x); return 0;}…… 题解列表 2021年11月05日 0 点赞 0 评论 149 浏览 评分:0.0
1043原来是这C语言 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include <math.h>int main (){ int max,min,mid,a,b,c;scanf("%d %d %d"…… 题解列表 2021年11月05日 0 点赞 0 评论 183 浏览 评分:0.0
1040我的才是好的C语言 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main (){ float x;scanf("%f",&x); printf("%6.2f\n%6.2f %6.2f\n%6.…… 题解列表 2021年11月05日 0 点赞 0 评论 178 浏览 评分:0.0
1037 可以的,C语言 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main (){ int n,x,y;scanf("%d %d",&x,&y); n=x%y;printf("%d",n); r…… 题解列表 2021年11月05日 0 点赞 0 评论 219 浏览 评分:0.0
我失误的的1034 C语言 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main (){ int x;scanf("%d",&x); int a,b,c,d; a=x/1000%10;b=x/100%…… 题解列表 2021年11月05日 0 点赞 0 评论 488 浏览 评分:0.0
1026就是;铺C语言 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){int a[10],i;for(i=0;i<10;i++){scanf("%d",&a[i]);}for(i=9…… 题解列表 2021年11月05日 0 点赞 0 评论 295 浏览 评分:0.0
题解 1089: A+B for Input-Output Practice (V) 摘要:#include<stdio.h>#define N 50int calculate(int n);//定义一个行元素求和函数void main(){ int i,n,m;//n为行数 int…… 题解列表 2021年11月05日 0 点赞 1 评论 254 浏览 评分:6.0
二级c语言-偶数求和--用Python求解----(Python) 摘要:第一句输入可以不要,但是提交判断时需要 ```python s=int(input()) t=list(map(int,input().split())) n=0 for i in t: …… 题解列表 2021年11月05日 0 点赞 0 评论 291 浏览 评分:6.0
二级c语言-平均值计算--用Python求解----(Python) 摘要:通过sum函数求和用len计算个数同过for循环遍历判断大于平均值加1 ```python t=list(map(int,input().split())) n=0 avg=sum(t)/le…… 题解列表 2021年11月05日 0 点赞 0 评论 1167 浏览 评分:9.9