1009: [编程入门]数字的处理与判断。不用数组 摘要:解题思路:通过乘方再取余获得最高位和去掉最高位、动态控制位宽注意事项:逐位输出用count(位数)作为判断表达式,别用 i(当前值) 参考代码:#include <stdio.h> #include…… 题解列表 2021年03月12日 0 点赞 0 评论 111 浏览 评分:0.0
数字的处理与判断 摘要:解题思路:注意事项:参考代码:int main(){ int num=0; int n=0; scanf("%d",&num); int temp=num; int ar…… 题解列表 2022年08月30日 0 点赞 0 评论 85 浏览 评分:0.0
[编程入门]数字的处理与判断 (C语言代码) 摘要:解题思路:注意事项:代码的准确度。参考代码:#include<stdio.h>int main(){ long int x; int sum=0,a; int m=0,n=0,v=0,c=0; sca…… 题解列表 2019年04月24日 0 点赞 0 评论 433 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (C语言代码) 摘要:解题思路:注意事项:参考代码: #include <stdio.h>int main(void){ int b,a[5],c,n,i; scanf("%d",&b); if(b…… 题解列表 2018年03月12日 0 点赞 0 评论 437 浏览 评分:0.0
[编程入门]数字的处理与判断-题解(C语言代码) 摘要: #include #include int main() { int i,k; char str[80]; gets(str)…… 题解列表 2020年02月27日 0 点赞 0 评论 292 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstdio> #include<string> using namespace std; int mai…… 题解列表 2019年03月31日 0 点赞 0 评论 307 浏览 评分:0.0
数字的处理与判断 摘要:解题思路:无论多大的数,要知道每一位上的值,其实就是在取余,初学者可能不知道数组,但是可以通过不断的求其余数,然后通过换位置的方式达到题目所需的要求。①本题时在选择结构的范围内,所以if条件语句需要使…… 题解列表 2022年09月29日 0 点赞 0 评论 85 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (C语言代码) 摘要:解题思路:注意事项:参考代码:int main(){ /*int a; scanf("%d",&a); if(a>=0&&a<10) printf("1\n"); el…… 题解列表 2018年10月09日 0 点赞 0 评论 498 浏览 评分:0.0
[编程入门]数字的处理与判断-题解(C语言代码) 摘要:解题思路:(参考他人代码优化 )在for循环中用getchar()接收输入的数字字符,并将其ASCII码赋值给temp(temp的数据类型为int),temp==10时(换行“\n”的ASCII码是…… 题解列表 2020年11月29日 0 点赞 0 评论 444 浏览 评分:0.0
[编程入门]数字的处理与判断-题解(C语言代码) 摘要:#include int main() { int a,b=0,c[10],i=0; scanf("%d",&a); while(a) { c[i++]=a%10; b…… 题解列表 2019年07月23日 0 点赞 0 评论 401 浏览 评分:0.0