题解列表

筛选

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……

时间复杂度的O(n)算法

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;#define maxn 100010#define maxk 100010//0 ……