rock,scissors and paper 摘要:解题思路:这里根据3个string长度不同 就直接用int标记 封装一个判断函数 函数判断就三种结果 要么前面赢(8,5;4,8,;5,4;) 要不后面赢(这里复制一下就好了) 要不平局(s1.siz…… 题解列表 2024年11月30日 0 点赞 0 评论 86 浏览 评分:0.0
c语言string解法 摘要:解题思路:注意事项:注意字符串的表达参考代码:#include <stdio.h>#include <string.h>int main(){ int N; char S1[50],S2[…… 题解列表 2024年11月20日 0 点赞 0 评论 106 浏览 评分:0.0
石头剪刀布硬解 摘要:解题思路:利用字符串的首元素字母,即是数组的首个元素注意事项:一局比完直接出结果,不是那种全部比完才输出参考代码:#include<stdio.h>#include<string.h>#include…… 题解列表 2024年11月07日 0 点赞 0 评论 81 浏览 评分:0.0
2849: 石头剪子布 摘要:解题思路:注意事项:参考代码:n = int(input())for i in range(n): a,b = input().split() if (a=='Rock'a…… 题解列表 2024年08月01日 0 点赞 0 评论 137 浏览 评分:0.0
12行:万花丛中过,片叶不沾身 摘要:解题思路:注意事项:参考代码:n=int(input())def rule(p1,p2): if p1==p2: return "Tie" elif (p1=="Scisso…… 题解列表 2024年07月25日 0 点赞 0 评论 161 浏览 评分:9.9
2849: 石头剪子布 摘要:参考代码:n = int(input()) for _ in range(n): S1, S2 = map(str, input().split()) if S1 == S2: …… 题解列表 2024年03月23日 0 点赞 0 评论 223 浏览 评分:0.0
石头剪子布(Java) 摘要:解题思路:注意事项:参考代码:package arrLast; //题目 2849: 石头剪子布 import java.util.Scanner; public class t_2849 { …… 题解列表 2024年02月06日 0 点赞 0 评论 124 浏览 评分:0.0
28行代码解决 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main() { int n; cin >> n; int a[1…… 题解列表 2024年01月08日 0 点赞 0 评论 196 浏览 评分:9.9
分解问题,模拟 摘要:参考代码:#include<iostream> using namespace std; int main() { int n; cin >> n; string …… 题解列表 2023年12月31日 0 点赞 0 评论 129 浏览 评分:9.9
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