C语言程序设计教程(第三版)课后习题8.1 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int max_gongyue(int a,int b){ int imax; int c=a>b?b:a; for(int i=c;…… 题解列表 2017年12月06日 0 点赞 0 评论 619 浏览 评分:0.0
WU-C语言程序设计教程(第三版)课后习题9.2 (C语言代码) 摘要:#include<stdio.h> #define S(a,b) (a)%(b) int main() { int a,b; scanf("%d%d",&a,&b); printf(…… 题解列表 2017年12月06日 1 点赞 0 评论 1037 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题9.8 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#define max2(x,y,z)(x>y?x:y)>z?(x>y?x:y):zfloat max1(float x,float y…… 题解列表 2017年12月06日 1 点赞 0 评论 638 浏览 评分:0.0
Manchester- C语言程序设计教程(第三版)课后习题1.6 摘要:解题思路:两个程序,两种思路;注意事项:参考代码:1.#include<stdio.h> int main() { int a,b,c; scanf("%d%d%d",&a,&b,&c); …… 题解列表 2017年12月06日 25 点赞 1 评论 1153 浏览 评分:0.0
汽水瓶 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,num=0,leave=0,sum=0; while(scanf("%d",&n)!=EOF) { …… 题解列表 2017年12月06日 1 点赞 0 评论 551 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.5 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <cstring>using namespace std;int main(){ char a[100]; int…… 题解列表 2017年12月06日 0 点赞 0 评论 801 浏览 评分:0.0
代码简短能完成就好 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ string a; int m,n; cin >> m; cin >…… 题解列表 2017年12月06日 0 点赞 0 评论 704 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.6 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <string>#include <cstdio>using namespace std;int main(){ …… 题解列表 2017年12月06日 0 点赞 0 评论 659 浏览 评分:0.0
Manchester- C语言程序设计教程(第三版)课后习题10.5(公式法) 摘要:解题思路:根据公式直接求解注意事项:参考代码:#include <stdio.h> int M = 3; int main() { int n, s = 0; scanf(…… 题解列表 2017年12月06日 29 点赞 7 评论 1100 浏览 评分:0.0
大哥们我这为什么不行啊。。。。。 摘要:解题思路:看你们都用字符转换,新手感到很慌。。注意事项:参考代码:#include<stdio.h>int v(int n){ int x,y; x=y=n; x/=10; y%=10; if((x-…… 题解列表 2017年12月07日 0 点赞 2 评论 432 浏览 评分:0.0