题解 1453: 蓝桥杯历届试题-翻硬币

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

题目-翻硬币

摘要:参考代码:#include"bits/stdc++.h" using namespace std;  bool a[11111];  bool b[11111];  long long ans……

python-翻硬币

摘要:解题思路:设输入的两个字符串为s和e。对s中的一位进行遍历,如果s[i] != e[i],则同时翻转s[i]和s[i+1]。注意事项:参考代码:def f(s,e):     cnt = 0   ……

c语言巧妙解答(小白)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[1001]; char b[1001]; gets(a); g……