[编程入门]数字的处理与判断-题解(C语言代码) 摘要:```c # include int main() { int n,i,j,a[5],m; i=0; scanf("%d",&n); m=n; while(n!=0) {…… 题解列表 2020年02月04日 0 点赞 0 评论 285 浏览 评分:0.0
1009[编程入门]数字的处理与判断-不简洁但很明了(C语言) 摘要:解题思路:仅使用if-else判断选择的笨办法注意事项:参考代码:#include<stdio.h>int main(){ int a,b,d; int c1,c2,c3,c4,c5; …… 题解列表 2022年04月12日 0 点赞 0 评论 91 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (Java代码) 摘要:解题思路注意事项:(1)利用循环判断几位数,即使题中没有要求要求这一步也带上,为下面做铺垫,在循环中求出比位数小1的10的次方;(2)注意%和/的使用,在做题之前,大致有个方向,集中精力一次拿下;参考…… 题解列表 2018年05月07日 1 点赞 0 评论 751 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a,b[5]; int n=0; scanf("%d",&a); while(a!=0) { b[n…… 题解列表 2017年11月08日 5 点赞 1 评论 481 浏览 评分:0.0
递归函数法 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>int b[5],i=0,mask2=1,n=0;int fun(int a ,int w){ if…… 题解列表 2023年12月21日 0 点赞 0 评论 72 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,d,e,t,s; scanf("%d",&t); if(t/10<1) …… 题解列表 2021年03月23日 0 点赞 0 评论 156 浏览 评分:0.0
编写题解 1009: [编程入门]数字的处理与判断 摘要:解题思路:注意事项:参考代码:a=input('') print(len(a)) for i in a: print(i,end=' ') print(…… 题解列表 2022年05月05日 0 点赞 0 评论 133 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include<math.h>int A(int a);void B(int a,int count);void C(int a,i…… 题解列表 2018年05月30日 0 点赞 0 评论 375 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (C语言代码) 摘要:解题思路:字符串注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#include <string.h>int main(){ char a[10],…… 题解列表 2018年01月06日 0 点赞 0 评论 566 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (C语言代码) 摘要:解题思路:这个题目在于如何将输入的数倒序输出,并统计位数,思路其实不是很难。注意事项:只是个人思路,或许有毛病。参考代码:#include<stdio.h>int main(){int shu,z,a…… 题解列表 2018年12月28日 0 点赞 0 评论 247 浏览 评分:0.0