题解列表
c++字符串加密病历单
摘要:解题思路:注意事项:xyz的逆序输出参考代码:#include <bits/stdc++.h>using namespace std;int main (){ string tmp; char ans……
大整数乘法(详细版)
摘要:解题思路:这里的思路就是进位法,这种高精度的题目必须要用到数组去保存,所以这类题都是用数组来做。注意事项:参考代#include<stdio.h>#include<string.h>int main(……
2755: 类型转换1
摘要:```cpp
#include
using namespace std;
int main()
{
bool a;
char b;
cout……