博客
关于我
磕代码:c/c++/java:输入身高体重,输出BMI区间。float类型的定义和使用
阅读量:83 次
发布时间:2019-02-26

本文共 1451 字,大约阅读时间需要 4 分钟。

在这里插入图片描述

在这里插入图片描述
c:

#include
int main(){ int a,b; while(scanf("%d %d",&a,&b)!=EOF){ float c=a/(b/100.00)/(b/100.00); if(c<18.5)printf("Underweight\n"); else if(c>=18.5&&c<=23.9)printf("Normal\n"); else if(c>23.9&&c<=27.9)printf("Overweight\n"); else printf("Obese\n"); }}

c++:

//#include
#include
using namespace std;int main(){ int a,b; while(cin>>a>>b){ float c=a/(b/100.00)/(b/100.00); if(c<18.5)cout<<"Underweight"; else if(c>=18.5&&c<=23.9)cout<<"Normal"; else if(c>23.0&&c<=27.9)cout<<"Overweight"; else cout<<"Obese"; cout<

java:

import java.io.*;public class Main{       public static void main(String[]args)throws IOException{           BufferedReader br=new BufferedReader(new InputStreamReader(System.in));        String s;        while((s=br.readLine())!=null){               String[]sa=s.split(" ");            int a=Integer.parseInt(sa[0]);            int b=Integer.parseInt(sa[1]);            double c=a/(b*0.01)/(b*0.01);            if(c<18.5)                System.out.println("Underweight");            else if(c<=23.9&&c>=18.5)                System.out.println("Normal");            else if(c<=27.9&&c>23.9)                System.out.println("Overweight");            else                System.out.println("Obese");        }    }}//           float b=Float.parseFloat(sa[1]);            double c=a*10000/(b*b);

转载地址:http://ewcz.baihongyu.com/

你可能感兴趣的文章
new对象时,JVM内部究竟藏了什么小秘密?
查看>>
new操作符的实现原理
查看>>
Next.js React Server Components 教程
查看>>
NextGen Mirth Connect XStream反序列化远程代码执行漏洞(CVE-2023-43208)
查看>>
next项目部署到服务器pm2进程守护
查看>>
nexus 介绍
查看>>
nexus上传jar
查看>>
Nexus指南中的更新强调集成和透明度的重要性
查看>>
Nexus指南已经发布
查看>>
Nexus(1):Nexus的安装与配置
查看>>
NFC技术:概述
查看>>