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