c语言string解法 摘要:解题思路:注意事项:注意字符串的表达参考代码:#include <stdio.h>#include <string.h>int main(){ int N; char S1[50],S2[…… 题解列表 2024年11月20日 0 点赞 0 评论 109 浏览 评分:0.0
石头剪刀布硬解 摘要:解题思路:利用字符串的首元素字母,即是数组的首个元素注意事项:一局比完直接出结果,不是那种全部比完才输出参考代码:#include<stdio.h>#include<string.h>#include…… 题解列表 2024年11月07日 0 点赞 0 评论 81 浏览 评分:0.0
c代码记录之石头剪子布 摘要: #include #include int cq(char str1[],char str2[]){ if((str1[0]=='R'&&st…… 题解列表 2023年11月29日 0 点赞 0 评论 130 浏览 评分:0.0
石头剪刀布 简单易懂(来个五星兄弟们)!!!! 摘要:解题思路:石头剪刀布的长度不同 所以用strlen 区分注意事项:简单易懂兄弟们 不懂可以私信我参考代码:#include<stdio.h>#include<string.h>int main(voi…… 题解列表 2023年10月22日 0 点赞 0 评论 194 浏览 评分:9.9
石头剪子布(不难,就是麻烦) 摘要:解题关键: strcmp() 字符串比较函数 头文件为#include strcmp(s1,s2) 若s1==s2,则返回0 若s1>s2,则返回大于0的值 若s1…… 题解列表 2023年09月21日 0 点赞 0 评论 191 浏览 评分:0.0
2849: 石头剪子布(C语言) 摘要: #include #include//主函数中使用了strcmp函数 int main() { int N; scanf("%d",&N); for(int i=0;i…… 题解列表 2023年09月20日 0 点赞 0 评论 229 浏览 评分:0.0
函数+strcmp解决,含思路和知识点讲解 摘要:思路:①每一轮玩家1、2出拳,存放在S1、S2数组中; ②写一个game()函数代表每一轮剪刀石头布,并把结果存放到flag数组中; ③最后一并输出结果。 #include …… 题解列表 2023年09月04日 0 点赞 1 评论 242 浏览 评分:9.9
字符串--4.石头剪刀布 摘要:解题思路: 用空格分离字符,想到用scanf("%s %s",a,b);注意事项:参考代码:#include<stdio.h> #include<string.h> int main() { …… 题解列表 2023年03月24日 2 点赞 0 评论 226 浏览 评分: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函数) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>//建立结构体struct play{ char p1[100];//玩家1 char p2[100…… 题解列表 2023年02月07日 0 点赞 0 评论 434 浏览 评分:9.9