参考代码: #include<stdio.h> typedef enum _peak{stone,cloth,scissor} peak; typedef enum _result{win,loss,even} result; peak match( int x) { if( x == 0) return stone ; else if( x == 1) return cloth ; else return scissor ; } result combat( peak x,peak y) { if((x == ston...
用c语言编写的剪刀石头布双人联机游戏,包含显示说明、进行游戏和退出游戏等功能,没有设计界面,使用了socket实现联机。压缩文件中包含一个word文档,里面是对程序的详细说明点赞(0) 踩踩(0) 反馈 所需:7 积分 电信网络下载 mp3Code 2024-10-26 11:09:20 积分:1 ...
参考代码: #include<stdio.h> typedef enum _peak{stone,cloth,scissor} peak; typedef enum _result{win,loss,even} result; peak match( int x) { if( x == 0) return stone ; else if( x == 1) return cloth ; else return scissor ; } result combat( peak x,peak y) { if((x == ston...
参考代码: #include<stdio.h> enum game {stone, cloth, scissors}; int main(void) { enum game hand1, hand2; scanf("%d %d", &hand1, &hand2); if (hand1 == hand2) printf("0"); else if (hand1 == 0 && hand2 == 2) printf("1"); else if (hand1 == 1 && hand2 == 0)...
或者生成一段代码?试试AI编程助手吧评论区 酷酷流浪猫 个人感觉评定应该用switch选择结构更简洁 #include"stdio.h" enum yx{st,bu,jd}; enum pd{shu=-1,pin,yin}; int main() { enum yx x,y; enum pd j; int a,b; scanf("%d%d",&a,&b); x=(enum yx)a; y=(enum yx)b; switch(x-y...