题解列表

筛选

903: 不高兴的津津

摘要:``` #include using namespace std; const int N=110; int a[N] ,b[N]; int main() { int t = 0; ……

2846: 统计数字字符个数

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;const int N=300;int main(){ int sum=0; str……

C++宏三角形面积 简单易懂

摘要:解题思路:注意事项:参考代码:#include <iostream>#include <cmath>#include <iomanip>#define area sqrt(s*(s-a)*(s-b)*……

C++宏练习 简洁易懂

摘要:解题思路:注意事项:参考代码:#include <iostream>#define yu(a,b) (a%b) using namespace std;int main(){ int a,b,c; c……