1009: [编程入门]数字的处理与判断 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int num = 0; cin >> num; s…… 题解列表 2024年01月23日 0 点赞 0 评论 120 浏览 评分:0.0
编写题解 1009: [编程入门]数字的处理与判断【C++】 摘要:解题思路:这道题用数组做会方便一点。如果不想用数组做,就需要像下面这么麻烦。注意事项:建议还是学习用数组做参考代码:#include<iostream>using namespace std;int …… 题解列表 2021年04月01日 0 点赞 0 评论 121 浏览 评分:0.0
编写题解 1009: [编程入门]数字的处理与判断 摘要:解题思路:输入数据用列表保存,位数是列表长度,然后顺序及逆序输出列表。参考代码:lis=list(map(int,input())) a=len(lis) print(len(lis)) for…… 题解列表 2023年03月28日 0 点赞 0 评论 87 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (C语言代码) 摘要:解题思路:三个循环,中规中矩的解题注意事项:参考代码:#include <stdio.h>#include <stdlib.h>int main(){ int num,array[5],count=0…… 题解列表 2017年08月15日 1 点赞 0 评论 776 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (C语言代码) 摘要:解题思路:其它题解都是垃圾!!!!注意事项:参考代码:#include<stdio.h>int main(){ int a[6],n,i,j,s=0; scanf("%d",&n); …… 题解列表 2017年12月16日 0 点赞 0 评论 616 浏览 评分:0.0
[编程入门]数字的处理与判断 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a,k=1,n=5,i=10000; scanf("%d",&a); while(a<i){ i=i…… 题解列表 2021年03月13日 0 点赞 0 评论 79 浏览 评分:0.0
编写题解 1009: [编程入门]数字的处理与判断(弱智版讲解) 摘要:解题思路:利用数组来储存对应的数字之后遍历输出注意事项:注意数组遍历的是角标,角标对应的数字才能输出参考代码:#include<stdio.h>int main(){ int j,i=0 ,a; in…… 题解列表 2022年12月04日 0 点赞 0 评论 76 浏览 评分:0.0
[编程入门]数字的处理与判断-题解(C语言代码)挺简单的! 摘要:解题思路: 看一下代码中的注释!注意事项:参考代码:#include <stdio.h>int main (){ int i,j,b,n,t,c,d; scanf("%d",&n); d=…… 题解列表 2020年11月20日 0 点赞 0 评论 313 浏览 评分:0.0
[编程入门]数字的处理与判断-题解(C语言代码) 摘要: 程序主题:输入一串数值不超过五位数,输出位数,输出单个数值加空格(最后一个数值不能有空格)输出数值的倒数。 (个人做)这个题比较难,涉及到 判断 循环 数组 差不多就这点。 题目中输出…… 题解列表 2020年03月02日 0 点赞 0 评论 246 浏览 评分:0.0
通俗易懂的数据处理方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,i,k,b[100]; scanf("%d",&a); for(i=0;i<=4;i++) { k…… 题解列表 2022年06月20日 0 点赞 0 评论 115 浏览 评分:0.0