C语言程序设计教程(第三版)课后习题5.7 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,i,g,s,b,q,w; scanf("%d",&a); if(a>0) i=…… 题解列表 2017年11月10日 0 点赞 0 评论 747 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ int i; int a,b,c,d,g,e; scanf("%5d",&i); a=i/10000; b=…… 题解列表 2017年11月11日 0 点赞 0 评论 622 浏览 评分: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
C语言程序设计教程(第三版)课后习题5.7 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int n, i=0, j; int m[i]; scanf("%d",&n); if…… 题解列表 2017年11月17日 0 点赞 0 评论 688 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (C语言代码) 摘要:解题思路:用字符串来解题,将整数的每一位看成字符注意事项:参考代码:#include <stdio.h>#include <string.h>int main(){ char a[5]; …… 题解列表 2017年11月19日 0 点赞 0 评论 565 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,t=0,k,n,i=0,aa[5]; scanf("%d",&a); k=a; …… 题解列表 2017年11月28日 0 点赞 0 评论 591 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)(笨办法) 摘要:解题思路:注意事项:循环之后a的值改变了,用b作为中间值代替。一个新手的笨办法。。。参考代码:#include<stdio.h>int main(){ int a,b,i; i=0; …… 题解列表 2017年12月04日 2 点赞 1 评论 491 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,a,b,c,d,e; //abcde is five bit integer in…… 题解列表 2017年12月05日 0 点赞 0 评论 587 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (C语言代码) 摘要:解题思路:取余的办法很麻烦,这里我的思路是采用字符数组进行存储,这样即使位数多余5位也可以实现题目的要求。注意事项:参考代码:#include <stdio.h>char a[100];int mai…… 题解列表 2017年12月05日 0 点赞 0 评论 472 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (C语言代码) 摘要:逐步求余即可注意事项:参考代码:#include <stdio.h>int main (){ int a,b; scanf("%d", &a); if (a-10>=-10&&a-1…… 题解列表 2017年12月11日 1 点赞 0 评论 679 浏览 评分:0.0