编写题解 1009: [编程入门]数字的处理与判断【C++】 摘要:解题思路:这道题用数组做会方便一点。如果不想用数组做,就需要像下面这么麻烦。注意事项:建议还是学习用数组做参考代码:#include<iostream>using namespace std;int …… 题解列表 2021年04月01日 0 点赞 0 评论 121 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (C语言代码) 摘要:解题思路:取余取证的活学活用注意事项:参考代码:#include<stdio.h>#include<math.h> int main(){ int i,j,n,l,k[5],count,N; scan…… 题解列表 2018年03月13日 0 点赞 0 评论 549 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (C语言代码) 摘要:解题思路:老实说我这个代码是最简单的,同时也是最没技术含量的。我本想用循环来解决这个问题的,但是我想不到,越想越头疼,所以暂时搁置。这个代码很简单,用的是选择结构if-else,思路清晰。逻辑关系强。…… 题解列表 2018年11月08日 0 点赞 0 评论 334 浏览 评分:0.0
编写题解 1009: [编程入门]数字的处理与判断 摘要:解题思路注意事项:参考代码:#include<stdio.h>int main(void){ int a; int w, q, b, s, g;//分别为万、千、百、十、个 scan…… 题解列表 2023年05月21日 0 点赞 0 评论 86 浏览 评分:0.0
最麻烦也是最容易想到的解法。 摘要:解题思路:应用if语句或者switch语句,将可能的情况一一列出来。注意事项:适用于可能的情况类型较少的!参考代码:#include <stdio.h>#include <stdlib.h>int m…… 题解列表 2022年01月26日 0 点赞 0 评论 129 浏览 评分:0.0
1009: [编程入门]数字的处理与判断基本解 摘要:解题思路:注意事项:参考代码:public class Main { public static void main(String[] args) { Scanner scan = new Scan…… 题解列表 2021年06月19日 0 点赞 0 评论 149 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a,b,c,d,e,f,g; scanf("%d",&a); c=a/10000; d=(a-c*10…… 题解列表 2017年08月19日 1 点赞 0 评论 859 浏览 评分:0.0
编写题解 1009: [编程入门]数字的处理与判断 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#include<string.h>int main(){ int x,count; …… 题解列表 2024年09月06日 0 点赞 0 评论 81 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (C++代码) 摘要:注意事项: 唯一需要注意的地方是: 用getchar()接收的数据是字符类型,不是整型,所以需要减48,获取真实整数参考代码:#include<iostre…… 题解列表 2018年12月22日 1 点赞 0 评论 430 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (C语言代码) 摘要:解题思路:给5个变量5位上的数赋值看最大位来处理不同情况注意事项:参考代码:#include<stdio.h>int main(){ int x,a,b,c,d,e,t; t=0; scanf(…… 题解列表 2017年11月17日 0 点赞 0 评论 571 浏览 评分:0.0