题解列表

筛选

汪汪与打针 (C++代码)

摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){    int a,b,i=2,sum;    while(cin>>……

水陆距离 (C++代码)

摘要:解题思路:            找到水域开始搜,然后就像病毒扩散一样,距离永远是最低的                        &nbs

奖学金 (C++代码)

摘要:解题思路:制作链表存储信息注意事项:多重嵌套if要注意{}的使用参考代码:#include<iostream> using namespace std; struct node { int ……
优质题解

C语言程序设计教程(第三版)课后习题5.7 (C++代码)

摘要:题目描述:给出一个不多于 5 位的整数,要求:1、求出它是几位数 2、分别输出每一位数字 3、按逆序输出各位数字,例如原数为 321,应输出 123输入:一个不大于5位的数字输出:一共三行,第一行:位……

数学的图表 (C++代码)

摘要:解题思路:注意事项:参考代码:<br/>#include<stdio.h>#include<math.h>#include<iostream>using namespace std;void nzhi……

统计字符数 (C++代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>#include<iostream>using namespace std;void cmax(char……