[编程入门]数字的处理与判断 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;string n;int main(){ cin>>n; cout<<n.size…… 题解列表 2022年05月24日 0 点赞 0 评论 57 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (C++代码) 摘要:注意事项: 唯一需要注意的地方是: 用getchar()接收的数据是字符类型,不是整型,所以需要减48,获取真实整数参考代码:#include<iostre…… 题解列表 2018年12月22日 1 点赞 0 评论 430 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (C语言代码) 摘要:解题思路:创建一个5位的一维数组,用于存储每个位上的数字,存储完毕后再按要求输出。注意事项:参考代码:#include <stdio.h>int main(){ int num,cnt=0,sin=0…… 题解列表 2018年10月09日 0 点赞 0 评论 476 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<math.h> int main() { int i = 0,n = 0,num = 5,a[5…… 题解列表 2018年03月12日 25 点赞 1 评论 1389 浏览 评分: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
[编程入门]数字的处理与判断-题解(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
C语言程序设计教程(第三版)课后习题5.7 (C语言代码) 摘要:解题思路:注意事项:注意include <math.h>,一定要加上。有问题的可以评论。参考代码:#include<stdio.h>#include<math.h>void main(){ int n…… 题解列表 2018年02月11日 0 点赞 0 评论 754 浏览 评分:0.0
数字处理与判断1099 摘要:解题思路:将输入的整数变为字符串,用<string.h>里的strlen()计算该字符串的位数; 2.用for循环输出单个字符;注意事项:for循环中的循环次数=strle…… 题解列表 2023年05月16日 0 点赞 0 评论 62 浏览 评分:0.0
1009: [编程入门]数字的处理与判断 摘要:解题思路:确定几位数,提取各位数字,完成顺序输出和逆序输出(常规思路:整数数组、三个循环)注意事项:参考代码:代码一:#include int main(){ int n,t,num=1; //…… 题解列表 2022年01月24日 0 点赞 0 评论 302 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(void){ int a, b, c[5] = { 0 }, i; scanf("%d", &a); b = a; f…… 题解列表 2018年10月10日 0 点赞 0 评论 210 浏览 评分:0.0