题解列表
1204: 大小写转换
摘要:放心,题目的End of file其实没什么用,可以不处理
```cpp
#include
#include
using namespace std;
int main()
{
……
1203: 多输入输出练习2
摘要:注意事项:这里的PI必须要保留4位多一位或少一位都会出错
```cpp
#include
#include
#define PI 3.1415
using namespace std;
i……
1202: 多输入输出练习1
摘要:```cpp
#include
using namespace std;
int main()
{
int x,max;
while(cin>>x)
{
……
1201: 回文数(一)
摘要:```cpp
#include
#include
using namespace std;
bool is_huiwen(int n)
{
char a[100];
bo……
(C++)剪刀石头布(数组实现)
摘要:解题思路:二维数组存胜负平结果注意事项:参考代码:#include <iostream>
using namespace std;
int main()
{
int ap[3][3……
巧用sort函数实现从大到小的排序输出!!
摘要:解题思路:用sort函数实现数组的从小到大排序,在逆序输出。使用sort函数需要导入头文件<algorithm>注意事项:参考代码:#include<iostream>using namespace ……