Hzu挑战自我


私信TA

用户名:gxhzxyjsj

访问量:98839

签 名:

2024终究会过去,期待2025!

等  级
排  名 8
经  验 27874
参赛次数 67
文章发表 157
年  龄 0
在职情况 教师
学  校 贺州学院
专  业 软件工程

  自我简介:

弱鸡一个,继续努力!

解题思路:按照题目要求,用枚举类型完成,多分支结构即可完成。

注意事项:

参考代码:

#include <stdio.h>
enum Game{shitou,bu,jiandao};
int main()
{
	enum Game g1,g2;
	int n1,n2;
	scanf("%d%d",&n1,&n2);
	g1=(enum Game)n1;
	g2=(enum Game)n2;
	if(g1==shitou)
	{
		if(g2==shitou) printf("0\n");
		else if(g2==bu) printf("-1\n");
		else printf("1\n");
	}
	else if(g1==bu)
	{
		if(g2==shitou) printf("1\n");
		else if(g2==bu) printf("0\n");
		else printf("-1\n");		
	}
	else //g1=jiandao
	{
		if(g2==shitou) printf("-1\n");
		else if(g2==bu) printf("1\n");
		else printf("0\n");		
	}	
	return 0;
}


 

0.0分

4 人评分

  评论区

个人感觉评定应该用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)
	{
	case 0:j=pin;break;
	case -2:
	case 1:j=yin;break;
	default:j=shu;break;
	}
	printf("%d",j);
    return 0;
}
2019-10-13 00:48:38
  • «
  • 1
  • »