石头剪刀布 简单易懂(来个五星兄弟们)!!!! 摘要:解题思路:石头剪刀布的长度不同 所以用strlen 区分注意事项:简单易懂兄弟们 不懂可以私信我参考代码:#include<stdio.h>#include<string.h>int main(voi…… 题解列表 2023年10月22日 0 点赞 0 评论 194 浏览 评分:9.9
2849: 石头剪子布 摘要:#include<stdio.h> #include<math.h> #include<string.h> # define N 100001 int main() { i…… 题解列表 2023年03月05日 0 点赞 0 评论 337 浏览 评分:9.9
函数+strcmp解决,含思路和知识点讲解 摘要:思路:①每一轮玩家1、2出拳,存放在S1、S2数组中; ②写一个game()函数代表每一轮剪刀石头布,并把结果存放到flag数组中; ③最后一并输出结果。 #include …… 题解列表 2023年09月04日 0 点赞 1 评论 242 浏览 评分:9.9
28行代码解决 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main() { int n; cin >> n; int a[1…… 题解列表 2024年01月08日 0 点赞 0 评论 198 浏览 评分:9.9
2849: 石头剪子布 摘要:``` #include using namespace std; const int N=110; int a[N],b[N]; int main(){ int T; cin>>…… 题解列表 2023年12月18日 0 点赞 0 评论 100 浏览 评分:9.9
石头剪子布,硬解(doge) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int n; char a[10],b[10]; scan…… 题解列表 2022年12月24日 0 点赞 0 评论 825 浏览 评分:9.9
石头剪刀布 摘要:解题思路:注意事项:参考代码:ls=["Rock", "Scissors", "Paper"]a=b=0x=0f=[]N = int(input())for i in range(N): a,b = …… 题解列表 2023年10月23日 0 点赞 0 评论 239 浏览 评分:9.9
石头剪子布(利用strcmp函数) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>//建立结构体struct play{ char p1[100];//玩家1 char p2[100…… 题解列表 2023年02月07日 0 点赞 0 评论 434 浏览 评分:9.9