[编程入门]数字的处理与判断-题解(C语言代码) 摘要: #include #include int main() { int i,k; char str[80]; gets(str)…… 题解列表 2020年02月27日 0 点赞 0 评论 291 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int x; int cnt=1;/*记录位数 */ int mark=1; //…… 题解列表 2018年02月26日 0 点赞 0 评论 452 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (C语言代码) 摘要:解题思路: 看了很多人的题解之后,我觉得解决题目不应仅能通过示例的测试,如大家所见,示例中是五位数,部分人的代码仅能通过五位数的测试,我的代码是可以通过五位数以内的所有数的!欢迎大家指教…… 题解列表 2017年08月22日 1 点赞 0 评论 1236 浏览 评分:0.0
[编程入门]数字的处理与判断 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(void){ int a,n,k=0,i,m,sum=0; scanf("%d",&a…… 题解列表 2019年06月03日 0 点赞 0 评论 312 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (C语言代码) 摘要:解题思路:接收到的整数循环除以10得出位数 其间对整数取余 拆出最后一位数字例如 54321 % 10 为 1将1 存入数组进入while 54321 / 10 为 5432 取余为2 一次类推注意事…… 题解列表 2018年02月02日 3 点赞 1 评论 388 浏览 评分:0.0
关于数字的处理与判断 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ string n; cin >> n; in…… 题解列表 2022年06月16日 0 点赞 0 评论 87 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)(笨办法) 摘要:解题思路:注意事项:循环之后a的值改变了,用b作为中间值代替。一个新手的笨办法。。。参考代码:#include<stdio.h>int main(){ int a,b,i; i=0; …… 题解列表 2017年12月04日 2 点赞 1 评论 491 浏览 评分:0.0
[编程入门]数字的处理与判断-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:# include <stdio.h>int main(){ int num,b,count=0,i;//注意count初值为0 int a[5]; …… 题解列表 2020年11月20日 0 点赞 0 评论 260 浏览 评分:0.0
1009: [编程入门]数字的处理与判断 摘要:解题思路:三行输出案例输出的分别是 1 .数的个数。 2 .从左到有输出位数的值(中间有空格)。3.从左到有输出。注意事项:参考代码:#include<stdio.h>int main(){int x…… 题解列表 2021年03月17日 0 点赞 0 评论 121 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (C语言描述 以10为基值) 摘要:解题思路:逆序及位数以10为基准值即可直接获取注意事项:如果没要求输出的位置,那么代码还可以进行简化参考代码:#include<stdio.h>void nixu(int a);int main(){…… 题解列表 2018年03月06日 1 点赞 0 评论 642 浏览 评分:0.0