[编程入门]数字的处理与判断-题解(C语言代码) 摘要:错误代码 ```c #include int main(){ int n,t=0; scanf("%d",&n); while(n>0){ n=n/10; t++; …… 题解列表 2020年01月05日 0 点赞 0 评论 429 浏览 评分:0.0
1009: [编程入门]数字的处理与判断 摘要:#include<stdio.h> int main() { char st[5],c,i=0; c=getchar(); int k=5; while(k--){ st[i++]…… 题解列表 2022年06月05日 0 点赞 0 评论 105 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (C语言代码) 摘要:解题思路:先判断出位数,再求出每一位上的数字,然后按照要求进行输出即可注意事项:主要注意最后一位输出时不能带空格参考代码:#include<stdio.h>int main(){ int a[6…… 题解列表 2017年12月19日 0 点赞 0 评论 690 浏览 评分:0.0
编写题解 1009: [编程入门]数字的处理与判断 摘要:解题思路:先判断位数,再逐步求各个位数上的数字。注意事项:解题应该把各个参量的实际意义标清楚,这样设计算法的时候不容易混乱。参考代码:#include <stdio.h>int main(){ …… 题解列表 2021年04月12日 0 点赞 0 评论 112 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (c++代码) 摘要:参考代码:#include <iostream> using namespace std; int main() { int a,b[5],sum=0,j=0; cin>>a…… 题解列表 2018年02月05日 1 点赞 0 评论 514 浏览 评分:0.0
[编程入门]数字的处理与判断-题解(Java代码) 摘要:package CCCC; import java.util.Scanner; public class C1009 { public static void main(String[] arg…… 题解列表 2020年03月29日 0 点赞 0 评论 223 浏览 评分: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
C语言程序设计教程(第三版)课后习题5.7 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>const int maxn =1e2+10;using namespace std;int nixu(int a)//逆序{ …… 题解列表 2018年04月23日 0 点赞 0 评论 488 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (C语言代码) 摘要:解题思路:这个题目在于如何将输入的数倒序输出,并统计位数,思路其实不是很难。注意事项:只是个人思路,或许有毛病。参考代码:#include<stdio.h>int main(){int shu,z,a…… 题解列表 2018年12月28日 0 点赞 0 评论 247 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (C语言代码) 摘要:解题思路:来自萌新傻大粗的解题,勿喷0.0注意事项:参考代码:#include<stdio.h> int main() { int i,a,b,c,d,e; scanf("%d",&i)…… 题解列表 2018年02月24日 0 点赞 0 评论 618 浏览 评分:0.0