其他分享
首页 > 其他分享> > L1-040 最佳情侣身高差

L1-040 最佳情侣身高差

作者:互联网

在这里插入图片描述

#include <iostream>
#include <algorithm>
#include <string.h>
#include <functional>
using namespace std;
struct pl{
	char c;//输入一个字符,不用开数组了
	float hh;//身高
}a[1111];
int main()
{   
  int n;
  scanf("%d",&n);
  float h;//注意类型
  for(int i=0;i<n;i++)
  {
  	scanf("%s%f",&a[i].c,&a[i].hh);
  	if(a[i].c=='F')
		{
			h=a[i].hh*1.09;
			printf("%.2f\n",h);
		}
		if(a[i].c=='M')
		{
			h=a[i].hh*1.0/1.09;
			printf("%.2f\n",h);
		}
  }
    return 0;
}

//本题注意不同数据的类型,因为类型改了好长时间

标签:printf,%.,int,float,情侣,hh,L1,include,040
来源: https://blog.csdn.net/weixin_51713993/article/details/114845708