C语言程序设计教程(第三版)课后习题5.7 (C语言代码) 摘要:解题思路:本人较蠢,只能强解注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,d,e,f; scanf("%d",&a); b=a/1…… 题解列表 2019年03月12日 0 点赞 0 评论 473 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstdio> #include<string> using namespace std; int mai…… 题解列表 2019年03月31日 0 点赞 0 评论 351 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main (void){ int a; int b = 0; int ch[5] = {0,0,0,0,…… 题解列表 2019年04月01日 1 点赞 0 评论 537 浏览 评分:0.0
[编程入门]数字的处理与判断 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h> int main() { char a[100],i; scanf("%s"…… 题解列表 2019年04月17日 0 点赞 0 评论 641 浏览 评分:0.0
[编程入门]数字的处理与判断 (C语言代码) 摘要:解题思路:利用字符串注意事项:参考代码: #include<stdio.h>#include<string.h>int main(void){ char arr1[6]; int i, n; i…… 题解列表 2019年04月19日 0 点赞 0 评论 534 浏览 评分:0.0
[编程入门]数字的处理与判断 (C语言代码) 摘要:解题思路:注意此题输入输出均为计算整型格式而非字符型,而且题目在选择结构要求解题范畴内注意事项:参考代码:#include<stdio.header>int m (){ int m,n,a,b,c…… 题解列表 2019年04月22日 0 点赞 0 评论 843 浏览 评分:0.0
[编程入门]数字的处理与判断 (C语言代码) 摘要:解题思路:注意事项:代码的准确度。参考代码:#include<stdio.h>int main(){ long int x; int sum=0,a; int m=0,n=0,v=0,c=0; sca…… 题解列表 2019年04月24日 0 点赞 0 评论 535 浏览 评分:0.0
[编程入门]数字的处理与判断 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ long int x; int sum=0,a; int m=0,n=0,v=0,c=0; scanf("%d"…… 题解列表 2019年04月24日 0 点赞 0 评论 481 浏览 评分:0.0
[编程入门]数字的处理与判断 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(void){ int a,n,k=0,i,m,sum=0; scanf("%d",&a…… 题解列表 2019年06月03日 0 点赞 0 评论 412 浏览 评分:0.0
[编程入门]数字的处理与判断-题解(C语言代码) 摘要:#include int main() { int a,b=0,c[10],i=0; scanf("%d",&a); while(a) { c[i++]=a%10; b…… 题解列表 2019年07月23日 0 点赞 0 评论 545 浏览 评分:0.0