C语言初学者必备,易懂易写 摘要:解题思路:使用数组和数学函数注意事项:程序中多次使用输入的数字和数字的位数,因此注意不要改变这两个值。注意数组f[i]是从f[0]开始的。参考代码:#include<stdio.h>#in…… 题解列表 2021年03月21日 0 点赞 1 评论 194 浏览 评分:9.3
思路简单,十分直接的一种方法。(小白可以看看) 摘要:解题思路:按照题目的思路,一个不大于5位的数字,先求几位数,在逐项打印,最后倒序输出。那么第一步:可以创建一个字符数组,用来存放数字。第二步:位数计算,即遍历数组元素,有多少就count++&…… 题解列表 2021年03月20日 0 点赞 0 评论 149 浏览 评分:0.0
1009: [编程入门]数字的处理与判断 摘要:解题思路:三行输出案例输出的分别是1.数的个数。2.从左到有输出位数的值(中间有空格)。3.从左到有输出。注意事项:参考代码:#include<stdio.h>intmain(){intx…… 题解列表 2021年03月17日 0 点赞 0 评论 109 浏览 评分:0.0
题解 1009: [编程入门]数字的处理与判断 摘要:解题思路:注意事项:参考代码:#include<iostream>usingnamespacestd;intmain(){ doublea;&…… 题解列表 2021年03月17日 0 点赞 0 评论 378 浏览 评分:9.9
[编程入门]数字的处理与判断 摘要:解题思路:注意事项:参考代码:#include<stdio.h>intmain(){inta,k=1,n=5,i=10000;scanf("%d",&a);wh…… 题解列表 2021年03月13日 0 点赞 0 评论 60 浏览 评分:0.0
1009: [编程入门]数字的处理与判断。不用数组 摘要:解题思路:通过乘方再取余获得最高位和去掉最高位、动态控制位宽注意事项:逐位输出用count(位数)作为判断表达式,别用i(当前值) 参考代码:#include &l…… 题解列表 2021年03月12日 0 点赞 0 评论 100 浏览 评分:0.0
来来来,看过来 摘要:解题思路:用字符串的知识点来写比较好写注意事项:参考代码:#include<stdio.h>#include<string.h>intmain(){intlen;chars[5…… 题解列表 2021年03月07日 0 点赞 0 评论 183 浏览 评分:9.9
编写题解 1009: [编程入门]数字的处理与判断 循环处理 摘要:参考代码:#include<stdio.h>#include<string.h>intmain(){ charstr[6];&nb…… 题解列表 2021年03月05日 0 点赞 0 评论 117 浏览 评分:0.0
稍微有点长 摘要:解题思路:注意事项:参考代码:#include<stdio.h>intmain(){intx,x1,x2,n=0;inti;scanf("%d",&x);x1=…… 题解列表 2021年03月03日 0 点赞 1 评论 73 浏览 评分:0.0
利用了一下math, 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>intmain(){ inta,i,c,d…… 题解列表 2021年03月03日 0 点赞 0 评论 110 浏览 评分:0.0