这是以前写的代码,可以参考一下
#include <stdio.h>
static int cnt_win = 0,cnt_draw = 0,cnt_lost = 0;// 以a记录输赢次数
static int a_c_cnt = 0,a_j_cnt = 0,a_b_cnt = 0;// a用各手势赢的次数
static int b_c_cnt = 0,b_j_cnt = 0,b_b_cnt = 0;// b用各手势赢的次数
// 将锤子变成数字4,剪刀变成数字2,布变成数字1
// 这样就不用重复写if判断语句,接下来可以直接switch判断
int num_change(char n)
{
switch(n)
{
case 'C':return 4;
case 'J':return 2;
case 'B':