C语言程序设计教程(第三版)课后习题8.4 (C语言代码) 摘要:解题思路:感觉这写法就是在耍流氓注意事项:参考代码:#include<stdio.h>int main(){ int a[3][3],i,n; for(i=0;i<3;i++){ for(n=0;n…… 题解列表 2019年02月28日 0 点赞 0 评论 1159 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.4 (C语言代码) 摘要:解题思路:感觉这写法就是在耍流氓注意事项:参考代码:#include<stdio.h>int main(){ int a[3][3],i,n; for(i=0;i<3;i++){ for(n=0;n…… 题解列表 2019年02月28日 0 点赞 0 评论 852 浏览 评分:0.0
蓝桥杯算法训练VIP-传球游戏 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int n,max=0,m;int chuan(int q,int p){ if(q==0)q=n; if(q==n+1)q=1; if…… 题解列表 2019年02月28日 0 点赞 0 评论 701 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.7 (C语言代码) 摘要:解题思路:答案是对的,其中有什么不足,欢迎大家指正。注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[1000],…… 题解列表 2019年02月28日 0 点赞 0 评论 837 浏览 评分:0.0
C语言训练-阶乘和数* (C语言代码) 摘要:解题思路:结合了几个题解可以参考注意事项:参考代码:#include<stdio.h>#include <math.h>int fun(int);int main(){ int i,n,num,…… 题解列表 2019年02月28日 1 点赞 0 评论 928 浏览 评分:0.0
上车人数 (C语言代码)懒人的穷举法 摘要:#include <stdio.h> int main() { int a,n,m,x; scanf("%d %d %d %d",&a,&n,&m,&x); int …… 题解列表 2019年02月28日 2 点赞 1 评论 580 浏览 评分:0.0
管理学院的人数 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int i,m,n,sum=0; do{ scanf("%d",&m); }while(m<=0||m>=2…… 题解列表 2019年02月28日 1 点赞 0 评论 772 浏览 评分:0.0
管理学院的人数 (C语言代码) 摘要:解题思路: sum的简单用法注意事项: 取值范围参考代码:#include<stdio.h>int main() { int m; do { scanf("%d",&m); } while(m<…… 题解列表 2019年02月28日 0 点赞 0 评论 909 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int a, b, c, i; float S = 0; sc…… 题解列表 2019年02月28日 0 点赞 0 评论 631 浏览 评分:0.0
C语言训练-委派任务* (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;bool fun1(int a,int b){ if(a+b>=1) return true…… 题解列表 2019年03月01日 0 点赞 1 评论 1715 浏览 评分:0.0