题解列表
1181: 不容易系列2
摘要:```cpp
#include
using namespace std;
int main()
{
int n;
while(cin>>n)
{
……
1182: 人民币问题
摘要:```cpp
#include
using namespace std;
int main()
{
int a,b,c,count=0;
int sum;
cin……
1183: 人见人爱A+B
摘要:```cpp
#include
using namespace std;
int main()
{
int n;
cin>>n;
while(n--)
……
1087: A+B for Input-Output Practice (III) C语言代码
摘要: #include
int main()
{
int a,b;
while(1)
{
……
题目 2756: 类型转换2
摘要:解题思路:A. bool B. char C. short D. int E. float F. double 只有E、F的类型是实型;  
(史上最简单版)单词个数统计
摘要:解题思路:这里我们可以知道单词与单词之间隔着一个空格,所以我们只要统计空格个数,最后加一即可注意事项:这里我们要用到一个头文件就是如下第二行代码,这个可以统计数字,空格,等字符的个数,所以非常方便参考……