题解列表

筛选

1182: 人民币问题

摘要:```cpp #include using namespace std; int main() { int a,b,c,count=0; int sum; cin……

1181: 不容易系列2

摘要:```cpp #include using namespace std; int main() { int n; while(cin>>n) { ……

只是写写注意事项

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int a,b;    scanf("%d",&a);    getchar();       //这里写……

糖果游戏(简单一般法)

摘要:解题思路:就是一个很简单的循环加上条件分支。注意事项:参考代码:#include<stdio.h>int main(){    int a[5];    int i=0;    for(i=0;i<5……

C语言 宏定义之找最大数&

摘要:解题思路:注意事项:此代码在蓝桥杯在线测试运行不起来,本人VS2019运行没问题,可能是float num[Long]的问题,如果改为int num[Long蓝桥杯就能运行了参考代码:#include……

c++字符串加密病历单

摘要:解题思路:注意事项:xyz的逆序输出参考代码:#include <bits/stdc++.h>using namespace std;int main (){ string tmp; char ans……

c语言的一种思路

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<limits.h>#include<math.h>#include<stdlib.h>int main(){    i……