新手数组做法,适合初学C语言看(C语言代码) 摘要:解题思路:个人认为数组做会好做一些,把每个位的数分开,然后弄清数组输出方向注意事项:参考代码:int main(){ int num,a,n,i,j; …… 题解列表 2018年12月05日 5 点赞 0 评论 813 浏览 评分:0.0
向往简单的生活(C语言代码) 摘要:解题思路:先以字符串形式输入该整数; 再用函数strlen()计算字符串长度; 最后字符串顺、倒输出。注意事项: 1.引用字符串要有#incl…… 题解列表 2018年07月24日 0 点赞 0 评论 756 浏览 评分:0.0
[编程入门]数字的处理与判断-题解(C语言代码) 摘要:```c #include int main() { int a,b=10,c=1,e,d=1,f,g=1,h=0; scanf("%d", &a); for (; a / b >=…… 题解列表 2020年04月13日 0 点赞 0 评论 346 浏览 评分:0.0
编写题解 1009: [编程入门]数字的处理与判断(弱智版讲解) 摘要:解题思路:利用数组来储存对应的数字之后遍历输出注意事项:注意数组遍历的是角标,角标对应的数字才能输出参考代码:#include<stdio.h>int main(){ int j,i=0 ,a; in…… 题解列表 2022年12月04日 0 点赞 0 评论 77 浏览 评分:0.0
数字的处理与判断 摘要:#include<stdio.h> #include<string.h> //strlen()包含其中 #define MAX 6 //方便修改取值上限 int main() { …… 题解列表 2021年11月02日 0 点赞 0 评论 153 浏览 评分:0.0
通俗易懂的数据处理方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,i,k,b[100]; scanf("%d",&a); for(i=0;i<=4;i++) { k…… 题解列表 2022年06月20日 0 点赞 0 评论 115 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (C语言代码) 摘要:解题思路:先分出位数,进行分类讨论注意事项:参考代码:/*拆分数字*/#include<stdio.h>int main(){ int x; scanf("%d",&x); if(x>=0&&x<=9…… 题解列表 2018年02月03日 0 点赞 0 评论 528 浏览 评分:0.0
[编程入门]数字的处理与判断-题解(C语言代码) 摘要:#include #include int main() { int n,m,i,a,b,num=0,vl; scanf("%d",&n); a=n; for(i=1;i…… 题解列表 2020年04月25日 0 点赞 0 评论 592 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (C语言代码) 摘要:解题思路:注意事项:参考代码: 1 #include<stdio.h> 2 int main() 3 { 4 int n=0,count=0,i=0; 5 int a[5]=…… 题解列表 2018年03月25日 0 点赞 0 评论 437 浏览 评分:0.0
[编程入门]数字的处理与判断-题解(C语言代码) 摘要:```c #include int main() { int number; scanf("%d",&number); int t=number; int n=0; do{…… 题解列表 2020年02月10日 0 点赞 0 评论 368 浏览 评分:0.0