题解列表

筛选

数据结构-快速排序

摘要:解题思路:注意事项:    存储数组0位置设为空,起初存数。参考代码:#include<iostream>using namespace std;int partition(int* a,int lo……

2759: 打印字符

摘要:思路:输入变量后转换为字符 ```cpp #include using namespace std; int main() { int a; cin>>a; p……

2758: 打印ASCII码

摘要:思路:先输入字符,然后类型转换 ```cpp #include using namespace std; int main() { char ch=getchar(); ……

2756: 类型转换2

摘要:自己思考...... ```cpp #include using namespace std; int main() { cout……

2755: 类型转换1

摘要:```cpp #include using namespace std; int main() { bool a; char b; cout……