1808C语言代码,good 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ float a; scanf ("%f",&a); printf("%.3f",a); return 0;…… 题解列表 2021年11月01日 0 点赞 0 评论 217 浏览 评分: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 评论 561 浏览 评分:0.0
1806C语言代码,good 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ int b; scanf("%*d %d %*d",&b); printf ("%d",b…… 题解列表 2021年11月01日 0 点赞 0 评论 292 浏览 评分: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 评论 312 浏览 评分:0.0
C语言代码 萨达十大good 摘要:解题思路:jiuzhe 注意事项:scanf ("|") /*"|"也要写进去*/参考代码:#include <stdio.h>int main (){ int a;float b;c…… 题解列表 2021年11月01日 0 点赞 0 评论 231 浏览 评分:0.0
递归永远的神 摘要:看到这题时,就想着用递归做。参考代码:#include<stdio.h> void fun(int n) { if(n==1) printf("A"); else { …… 题解列表 2021年11月01日 0 点赞 0 评论 347 浏览 评分:9.9
1025: [编程入门]数组插入处理 摘要:解题思路:将输入的数据与数组中元素从前往后依次比较,找到位置记住输入数据该插入位置。将其后元素依次后移注意事项:注意0元素,参考代码此种情况单独讨论参考代码:#includeint main(){ …… 题解列表 2021年11月01日 0 点赞 0 评论 295 浏览 评分:0.0
数字的处理与判断 摘要:#include<stdio.h> #include<math.h>//调用函数 int main() { int n,i,count=0; int a,c,d; int b,f…… 题解列表 2021年10月31日 0 点赞 0 评论 174 浏览 评分:0.0
1069: 二级C语言-寻找矩阵最值 摘要:解题思路:1.符合条件的情况下输入正确的值 2.循环找出最大的数 3.根据找出的最大的数输出对应下标和该元素注意事项:1.注意n的取值范围 &nb 题解列表 2021年10月31日 0 点赞 0 评论 414 浏览 评分:7.3
用C语言解题 摘要:解题思路:a.当输入的n是偶数时,做除以2操作 b.当输入的n是奇数时,做乘3加1操作 1.输入两个整数 i,j; 2.比较两个数的大小,从小到大循环,进行上述运算(a.b.) 3.统计i到j中每个数…… 题解列表 2021年10月31日 0 点赞 0 评论 352 浏览 评分:0.0