• 大小: 1.00KB
    文件类型: .cpp
    金币: 1
    下载: 0 次
    发布日期: 2021-02-01
  • 标签: c++  小游戏  UA  IO  

资源简介

c   game

资源截图

代码片段和文件信息


#include
#include
#include

void main()
{
int playerInput;
int npcInput;

srand(time(NULL));

while (1)
{
printf(“请出拳!“);
printf(“1为石头,2为剪刀,3为布:“);
scanf(“%d“ &playerInput);
switch (playerInput)
{
case 1:
printf(“你出的是石头!\n“);
break;
case 2:
printf(“你出的是剪刀!\n“);
break;
case 3:
printf(“你出的是布!\n“);
break;
default:
printf(“输入错误!\n“);
break;
}

npcInput = rand() %

评论

共有 条评论