1009: [编程入门]数字的处理与判断(入门新手) 摘要:#include<stdio.h>int main(){ int a,b,c,d,e,f,t; scanf("%d",&a); b=a/10000; c=a/1000%10; d=a/100%10; …… 题解列表 2022年11月04日 0 点赞 0 评论 68 浏览 评分:0.0
编写题解 1009: [编程入门]数字的处理与判断(简单易看) 摘要:解题思路:阿巴~阿巴~阿巴~阿巴~注意事项:阿巴~阿巴~阿巴~阿巴~(简单易看)参考代码:#include<stdio.h>int main(){ int a,b,c,d,t[5],i=0,s=0,e…… 题解列表 2023年11月05日 0 点赞 0 评论 63 浏览 评分:0.0
字符串的输出 摘要:解题思路:注意事项:参考代码:n=input()print(len(n))for i in n: print(i,end=' ')print()print(n[::-1])…… 题解列表 2022年04月06日 0 点赞 0 评论 95 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (C语言代码) 摘要:解题思路:利用数学符号%和/在while循环中进行取数,然后将每个位上的数字存到一个num数组上,在循环里面设置一个计数器countNum,可以进行计数,最后按照题目输出。注意事项:注意使用数组时不要…… 题解列表 2018年04月26日 0 点赞 0 评论 397 浏览 评分:0.0
c语言简单解法 摘要:解题思路:每次用x%10求出最后以为数字用数组存储,x=x/10; 注意事项:数组中的数式逆序的注意输出的时候别弄反参考代码:#include<stdio.h>int main() { i…… 题解列表 2021年10月07日 0 点赞 0 评论 216 浏览 评分:0.0
[编程入门]数字的处理与判断-题解(C语言代码) 摘要:#include int main() { int x,m,d,y,z,t=1,cnt=1; scanf("%d",&x); m=x; z=x; …… 题解列表 2020年03月17日 0 点赞 0 评论 270 浏览 评分:0.0
[编程入门]数字的处理与判断-题解(C语言代码) 摘要:解题思路:这一题主要使用了if和switch两个选择结构。能够帮助我们理解这两个选择结构的区别。先用一个if选择结构判断几位数,然后求出各位数值,再利用switch选择结构,按题目要求输出数值。注意事…… 题解列表 2020年07月07日 0 点赞 0 评论 294 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>#include<stdlib.h>#include<math.h>#include<ctype.h…… 题解列表 2018年01月01日 0 点赞 0 评论 609 浏览 评分:0.0
[编程入门]数字的处理与判断 摘要:a = input()print(len(a))b = list(a)for i in b: print(i,end=' ')print()print(a[::-1])…… 题解列表 2023年11月23日 0 点赞 0 评论 87 浏览 评分:0.0
c语言小白,数字的处理与判断 摘要:解题思路:em注意事项:en参考代码#include<stdio.h>#include<math.h>int main(){ double pw; int i,a,b,m,n,k=1,t,z[5]={…… 题解列表 2022年12月17日 0 点赞 0 评论 69 浏览 评分:0.0