题解列表
编写题解 3076: 中缀表达式值(expr)(C++版) !!! 加入“乐天之小团”可以看很多答案 !!!
摘要:```cpp#include#includeusing namespace std;const int N=1e5+5;string st;pair pf[N];int……
C语言数字迭代处理,细节处理
摘要:解题思路:获取每位上的数字并输出注意事项:输入超过4位不处理,最后一位后无空格参考代码:#include<stdio.h>int main(){&nbs……
题解 2819: 数字反转
摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a,b=0; scanf("%d"……
题解 2828: 与7无关的数
摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ long long a,b=0; scanf("%……
C题解 2829: 数1的个数
摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ long long a,b=0; scanf("%……
高精度加法(简单版)
摘要:解题思路:用数组用数组用数组(重要的事情说三遍)注意事项:注意进位和逆序输入输出参考代码:#include<stdio.h>#include<string……