1977C语言666good 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ int a,b,c,max,min ,mid; scanf("%d%d%d",&a,&b,&c); max=…… 题解列表 2021年11月01日 0 点赞 0 评论 454 浏览 评分:0.0
1978C语言66good 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ int s,x,a,b; scanf("%d %d",&a,&b); s=a*a+b*b;x=a+b; if…… 题解列表 2021年11月01日 0 点赞 0 评论 513 浏览 评分:0.0
1810cyuyanc语言因 niu 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ char a;int b;float c;double x; scanf ("%c %d %f %lf",&…… 题解列表 2021年11月01日 0 点赞 0 评论 428 浏览 评分:0.0
1809C语言代码,good 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ double a; scanf("%lf",&a); printf("%.12lf",a); return …… 题解列表 2021年11月01日 0 点赞 0 评论 939 浏览 评分:0.0
1808C语言代码,good 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ float a; scanf ("%f",&a); printf("%.3f",a); return 0;…… 题解列表 2021年11月01日 0 点赞 0 评论 414 浏览 评分:0.0
1807C语言代码,good 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ int a,b,c; scanf("%d %d %d",&a,&b,&c); printf ("%-8d%-…… 题解列表 2021年11月01日 0 点赞 0 评论 890 浏览 评分:0.0
1806C语言代码,good 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ int b; scanf("%*d %d %*d",&b); printf ("%d",b…… 题解列表 2021年11月01日 0 点赞 0 评论 475 浏览 评分:0.0
1668 C语言代码,good 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ int a; scanf ("%d",&a); printf("%#o %d %#x",a,a,a); re…… 题解列表 2021年11月01日 0 点赞 0 评论 484 浏览 评分:0.0
C语言代码 萨达十大good 摘要:解题思路:jiuzhe 注意事项:scanf ("|") /*"|"也要写进去*/参考代码:#include <stdio.h>int main (){ int a;float b;c…… 题解列表 2021年11月01日 0 点赞 0 评论 427 浏览 评分:0.0
递归永远的神 摘要:看到这题时,就想着用递归做。参考代码:#include<stdio.h> void fun(int n) { if(n==1) printf("A"); else { …… 题解列表 2021年11月01日 0 点赞 0 评论 558 浏览 评分:9.9