BMI

  • 编程

    height = 1.70 print(“您的身高: ” + str(height)) weight = 48.5 print(“您的体重: ” + str(weight)) bm…

    python 2022年9月13日
  • Python第二章

    例题一: 实验目的:根据身高、体重计算BMI指数 实验过程: height = 1.70print(“您的身高:”+str(height))weight =…

    python 2022年9月13日
  • Python02代码

    实例1 height = 1.65 print(“你的身高:”+str(height)) weight = 45.5 print(“你的体重:&…

    python 2022年9月13日
  • JavaScript基础2

    与或非三目运算:var a=10,b=20,c=30        console.log(a>b && b<c);//false        con…

    大前端 2022年7月26日