C语言程序设计教程(第三版)课后习题3.7 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main (){ char c1,c2,c3,c4,c5; c1='C',c2='h',c3=&…… 题解列表 2017年11月06日 0 点赞 0 评论 794 浏览 评分:0.0
C语言训练-最大数问题 (C语言代码) 摘要: #include<stdio.h> int main() { int a[100]; int i = 0, cnt = 0; int t; &nb 题解列表 2017年11月06日 0 点赞 0 评论 1025 浏览 评分:6.3
C语言训练-斐波纳契数列 (C语言代码) 摘要:#include<stdio.h> int fun(int n); int main() { int a[40]; int i; int n; scanf…… 题解列表 2017年11月06日 0 点赞 0 评论 1035 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题3.7 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>void main(){ char c1,c2,c3,c4,c5; scanf("%c%c%c%c%c",&c1,&c2,&c3…… 题解列表 2017年11月05日 0 点赞 0 评论 621 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(void){ float x,y; while(scanf("%f",&x)==1) …… 题解列表 2017年11月05日 0 点赞 0 评论 714 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>int x;int y;int main(){ while (scanf("%d", &x)==1)…… 题解列表 2017年11月05日 0 点赞 0 评论 836 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题1.5 (C++代码) 摘要:解题思路:#include<stdio.h>int main(){ printf("**************************\n"); printf("Hello World!…… 题解列表 2017年11月05日 0 点赞 0 评论 618 浏览 评分:0.0
陶陶摘苹果2 (C++代码) 摘要:解题思路:首先判断手可不可以够到,再加30判断注意事项:参考代码:#include<iostream>using namespace std;int main(){ int num=0,tal…… 题解列表 2017年11月05日 0 点赞 0 评论 884 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.4 (C语言代码) 摘要:解题思路:思路大同小异,就是用了个三目运算符。利用三目运算符求出a b中的较大值,然后再利用一次三目运算符求出较大值与c比较后的真正最大值;输出 然后就ok啦。有兴趣的第二次不用三目直接比较。注意事项…… 题解列表 2017年11月05日 0 点赞 0 评论 751 浏览 评分:0.0