C语⾔实现猜拳游戏
⼀、问题
C语⾔实现猜拳游戏,⽤户⾃⼰选择对⼿,可以创建玩家⾓⾊。可以记录当前对战情况(对战局数,得分情况)
⼆、解决思路
猜拳游戏⼤家都不陌⽣,从⼩玩到⼤,遇到棘⼿的选择,猜拳往往是最能服众的处理办法。那么今天我们就⽤C语⾔来实现这个⼩游戏。这题⽐较简单,创建两个字符数组,对应对⼿和玩家。接着⽤户选择要出的(⽯头,剪⼑,布),然后是电脑选择,最后把两个选择进⾏对⽐,判断输赢。
三、代码实现
第⼀步,编写game.h头⽂件,把需要⽤到的函数声明及⼀些宏定义写在⾥⾯
#ifndef __GAME_H__
#define __GAME_H__
#include <stdio.h>
#include <windows.h>
#include <time.h>
#pragma warning(disable:4996)
void menu();
void gamestart(int com, char* comname, char* name);
int judge(int choice, int c);
int computer_round();
void show(int count, int ptimes, int ctimes, char* comname, char* name);
#endif
第⼆步,编写main函数,从这⾥调⽤函数
#include "game.h"
int main()
{
menu();//调⽤menu函数
system("pause");
return 0;
}
第三步,编写game.c,把需要⽤到的函数都写在⾥⾯。
menu函数,指引⽤户做出选择
void menu()//menu函数,指引⽤户做出选择
{
printf("**************\n");
printf("**猜拳,开始**\n");
printf("**************\n");
printf("请选择对⽅⾓⾊(1.奥特曼2.葫芦娃3.孙悟空)\n");
int com = 0;
char comname[20] = { 0 };
int flag = 1;
while (flag) { //为⽤户选择的对⼿创建名字
scanf("%d", &com);
switch (com) {
case 1:strcpy(comname,"奥特曼");
flag = 0;
break;
case 2:strcpy(comname, "葫芦娃");
flag = 0;
break;
case 3:strcpy(comname, "孙悟空");
flag = 0;
break;
default:printf("输⼊有误!\n");
break;
}
}
printf("请输⼊你的名字:");
char name[20] = { 0 };
scanf("%s", name);//⽤户⾃⼰创建⾓⾊
printf("%sVS%s\n", name,comname);
printf("要开始吗?(y/n)\n");
char choice = 0;
while (1) {
if (flag) { // 判断⽤户是不是第⼀次进⾏游戏
printf("要继续吗?(y/n)\n");
}
flag = 1;
getchar();
scanf("%c", &choice);
switch (choice) {
case 'y': gamestart(comname,name);//'y',开始游戏,调⽤gamestart函数
break;
case 'n': printf("拜拜!\n");//'n',游戏结束,函数调⽤结束
return;
default: printf("输⼊有误,请重新输⼊!\n");
break;
}
}
}
gamestart函数,游戏开始
void gamestart(char* comname,char* name)
{
int static ptimes = 0;//⽤户赢的次数
int static ctimes = 0;//电脑赢得次数
int static count = 0; //游戏对战次数
if (count) {
show(count,ptimes,ctimes,comname,name); //如果不是第⼀次进⼊游戏,则显⽰当前对战情况 }
count++;//每进⾏⼀次游戏,count⾃加⼀
printf("请出拳:1.⽯头2.剪⼑3.布\n");
int choice = 0;
printf("你出拳:");
int flag = 1;
while (flag) {
scanf("%d", &choice);
switch (choice) {
case 1:printf("⽯头\n");
flag = 0;
break;
case 2:printf("剪⼑\n");
flag = 0;
break;
case 3:printf("布\n");
flag = 0;
break;
default:printf("输⼊有误,请重新输⼊!\n");
}
}
printf("%s出拳:", comname);
int result = judge(choice, computer_round());//先调⽤computer_round函数,得到电脑的选择
//然后调⽤judge函数,判断输赢
switch (result) {
case -1:printf("很遗憾,你输了!\n");
ctimes++; //记录电脑赢的次数
break;
case 0:printf("还不错,平局!\n");
break;
case 1:printf("恭喜你,你赢了!\n");
ptimes++; //记录⽤户赢的次数
break;
}
}
judge函数,判断输赢
int judge(int choice, int c)//judge函数,判断输赢
{
if (choice == c) { //如果两个选择相同,则平局
return 0;
}
if (choice - c == 1 || choice - c == -2) { // choice是⽤户选择,若符合这两个结果,则证明⽤户输
return -1;
}
else {
return 1; //否则⽤户赢
}
}
computer_round函数,电脑回合
int computer_round()//computer_round函数,电脑选择出什么
{
srand((unsigned long)time(NULL));
int c = rand() % 2 + 1; //与⼈的选项⼀样,1.⽯头2.剪⼑3.布
if (c == 1) {
printf("⽯头\n");
}
else if (c == 2) {
printf("剪⼑\n");
}
else {
printf("布\n");
}
return c;
}
show函数,显⽰当前对战情况
void show(int count, int ptimes, int ctimes, char* comname, char* name) {
system("cls");
printf("%sVS%s\n", name, comname);
printf("对战次数:%d\n", count);
printf("姓名得分\n");
printf("%6s %d\n", name, ptimes);
printf("%6s %d\n", comname, ctimes);
}
四、运⾏结果
五、写在最后
既然在家都闲着没事,不如写个⼩游戏;不耽误学习,不耽误娱乐。
c语言round函数怎么使用以上就是本⽂的全部内容,希望对⼤家的学习有所帮助,也希望⼤家多多⽀持。
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论