printf("%C\t",Human);break; } } //无限循环的结束 if(Human=='4') break; switch(Human) //判断开始游戏的真正对弈,人的主动选择 { case '1': printf("石头VS ");break; case '2': printf("剪刀VS ");break; case '3': printf("布VS ");break; } Computer = rand()%3+1+48; switc...
PAGE PAGE 1 C语言石头剪刀布游戏课设 项目说明 本系统基于C语言开发,适用于刚入门的C语言新手项目课设,开发软件采用VC++6.0开发,VS,DEV C++等均可运行。(书生) 项目运行截图 代码界面截图 完整源码 #include stdio.h #include conio.h #include stdlib.h #include time.h void main() { char Human,Compute...