L1-061

#include <stdio.h>
double kg,m;
double temp;

int main()
{
	scanf("%lf %lf",&kg,&m);
	temp=kg/(m*m);
	printf("%.1f\n",temp);
	if(temp>25)
	{
	printf("PANG");
	}
	else
	{
	printf("Hai Xing");
	}

	
	
return 0;
}
发布了13 篇原创文章 · 获赞 0 · 访问量 2010

猜你喜欢

转载自blog.csdn.net/diguangxihua/article/details/89057915
061