字符串--4.石头剪刀布 摘要:解题思路: 用空格分离字符,想到用scanf("%s %s",a,b);注意事项:参考代码:#include<stdio.h> #include<string.h> int main() { …… 题解列表 2023年03月24日 2 点赞 0 评论 226 浏览 评分:9.9
28行代码解决 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main() { int n; cin >> n; int a[1…… 题解列表 2024年01月08日 0 点赞 0 评论 197 浏览 评分:9.9
石头剪刀布 简单易懂(来个五星兄弟们)!!!! 摘要:解题思路:石头剪刀布的长度不同 所以用strlen 区分注意事项:简单易懂兄弟们 不懂可以私信我参考代码:#include<stdio.h>#include<string.h>int main(voi…… 题解列表 2023年10月22日 0 点赞 0 评论 194 浏览 评分:9.9
优质题解 石头剪子布(分解String) 摘要:解题思路:注意事项:问:为什么playgame函数必须加上static?答:`playGame` 函数在这里被声明为 `static`,是因为它被直接从 `main` 方法内部调用,而 `main` …… 题解列表 2023年11月02日 0 点赞 0 评论 611 浏览 评分:9.3
编写题解 2849: 石头剪子布 摘要:解题思路:注意事项:参考代码:ls=["Rock", "Scissors", "Paper"] #选择 def judge(S1,S2): if S1==S2: #平局 …… 题解列表 2022年10月28日 0 点赞 0 评论 418 浏览 评分:7.7
我是硬解的废物 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int n,p1=0,p2=0; char s1[10],s2[…… 题解列表 2022年11月24日 0 点赞 0 评论 288 浏览 评分:7.3
题解 2849: 石头剪子布 摘要: #include using namespace std; const int N=110; int a[N][N],sum; int main() {…… 题解列表 2023年12月18日 0 点赞 0 评论 92 浏览 评分:2.0
2849: 石头剪子布 摘要:``` #include using namespace std; const int N=110; int main(){ int T; cin>>T; while(T--){ …… 题解列表 2023年12月18日 0 点赞 0 评论 76 浏览 评分:2.0
我是硬解的废物Two 摘要:解题思路:暴力注意事项:参考代码:#include<iostream>#include<string>using namespace std;int main(){ int N; cin>>N; st…… 题解列表 2022年12月08日 0 点赞 0 评论 152 浏览 评分:0.0
2849: 石头剪子布 摘要:参考代码:n = int(input()) for _ in range(n): S1, S2 = map(str, input().split()) if S1 == S2: …… 题解列表 2024年03月23日 0 点赞 0 评论 224 浏览 评分:0.0