题解列表
2661: 蓝桥杯2022年第十三届省赛真题-扫雷
摘要:亿小时的奋斗后,终于找到了答案
```cpp
#include
#include
using namespace std;
typedef long long LL;
const int ……
2781: 奇偶ASCII值判断
摘要:```cpp
#include
using namespace std;
int main()
{
char ch;
cin>>ch;
if(int(ch)&1)……
2782: 整数大小比较
摘要:```cpp
#include
using namespace std;
int main()
{
int x,y;
cin>>x>>y;
if(x>y)
……
数字整除(水题但投机取巧)
摘要:```c
#include
int main(){
char s[200];
int i,sum;
while(scanf("%s",s)&&(s[0]!='0')){
s……
[编程入门]报数问题(水题)
摘要:```c
#include
int f(int n,int m){
if(n==1) return 0;//递归出口
else return (f(n-1,3)+3)%n;
}
in……
2900: 螺旋加密
摘要:```cpp
#include
using namespace std;
int a[25][25],b[90],c[25][25],d[410];
int main()
{
in……
2795: 财务管理
摘要:解题思路:注意事项:参考代码:s = ave = 0for i in range(0,12): a = float(input()) s = s + aave = s / 12print(……
2849: 石头剪子布
摘要:```cpp
#include
using namespace std;
int main()
{
int N;
cin>>N;
string str1,str2……