网站首页 站内搜索

搜索结果

查询Tags标签: english,共有 61条记录
  • 9.15

    height=1.68print("你的身高:"+str(height))weight=62print("你的体重:"+str(weight))bmi=weight/(height*height)print("你的BIM指数是:"+str(bmi))# 判断身材是否合理if bmi<18.5: print("你的体重过轻")if bmi>=1…

    2022/9/15 23:18:50 人评论 次浏览
  • Python 第二章实验

    height=1.7 #保存的身高的变量, 单位:米print("您的身高:" + str(height))weight = 100print("您的体重:" + str(weight)) #保存的体重的变量,单位:kgbmi=weight/(height**2) #用于计算BMI指数,公式:BMI=体…

    2022/9/15 14:17:21 人评论 次浏览
  • python基础学习

    一根据身高,体重计算BMI指数 height=1.70print("您的身高:"+str(height))weight=48.5print("您的体重:"+str(weight))bmi=weight/(height*height)print("您的BMI指数为:"+str(bmi))if bmi<18.5: print("您的体重过轻:"…

    2022/9/15 14:17:19 人评论 次浏览
  • 第二章 Python语言基础

    实例01 根据身高、体重计算BMI指数运用公式 “ BMI=体重/(身高 身高)”点击查看代码 height = 1.67 #保存身高的变量,单位:米 print("您的身高:" +str(height)) weight = 60 #保存体重的变量,单位:千克 print("您的体重:" +st…

    2022/9/15 14:17:11 人评论 次浏览
  • python第二章实例

    实例01 根据身高、体重计算BMI指数,代码如下:height =float(input("请输入你的身高:")) weight =float(input("请输入你的体重:")) bmi =weight/(height*height)#判断身材是否合理 if bmi<18.5:print("您的BMI指数为:"+str(bmi))prin…

    2022/9/15 1:17:18 人评论 次浏览
  • The first assignment

    实例01 code01: height = 1.70print("您的身高:"+str(height))weight = 48.5print("您的体重:"+str(weight))bmi=weight/(height*height)print("您的BMI指数为:"+str(bmi))#判断身材是否合理if bmi<18.5: print("您的体重过轻…

    2022/9/14 23:17:21 人评论 次浏览
  • 编程

    height = 1.70 print("您的身高: " + str(height)) weight = 48.5 print("您的体重: " + str(weight)) bmi=weight/(height*height) print("您的BMI指数为:"+str(bmi)) # 判断身材是否合理 if bmi<18.5:print("您的体重过轻 ~@_…

    2022/9/14 14:19:07 人评论 次浏览
  • PythonUnit2实例

    实验 1 项目名称: python语言基础 实例一: height=1.70 print("您的身高:"+str(height)) weight=48.5 print("您的体重:"+str(weight)) bmi=weight/(height*height) print("您的BIM指数为:"+str(bmi…

    2022/9/14 14:19:03 人评论 次浏览
  • Python02代码

    实例1 height = 1.65 print("你的身高:"+str(height)) weight = 45.5 print("你的体重:"+str(weight)) bmi=weight/(height*height) print("你的BMI指数为:"+str(bmi)) #判断身材是否合理 if bmi<18.5:print("你的体重过轻 ~@_@~&q…

    2022/9/13 14:46:11 人评论 次浏览
  • SQL-DQL基础查询

    DQL基础查询 数据表: 案例-查询姓名和性别sql语句SELECT NAME,sex FROM student;运行结果 案例-去除重复的结果集 sql语句SELECT DISTINCT english FROM student; -- 去除重复的结果集运行结果 案例-计算math和english分数之和 sql语句SELECT NAME,english,math,english+…

    2022/7/27 2:25:10 人评论 次浏览
  • A1 语音听力初挑战

    A1 语音听力初挑战 -- sam绝大部分高考结束后的成年人都适合从A1开始。少部分人可以从A2开始极少数人可以从A3开始A1的主要目的是对语音有初步认知,熟悉美语慢速语流,并积累一定的词汇量,所以分两步第一步,购买《赖世雄美语音标》,认真学习学习时候把自己当做没学过…

    2022/6/26 23:31:50 人评论 次浏览
  • 12.MYSQL基础-常见函数

    4. 常见函数 一、字符函数概念类似于Java的方法,将一组逻辑语句封装在方法中,对外暴露方法名优点隐藏了实现细节 提高代码的重用性调用select 函数名(实参列表) 【 from 表】;特点叫什么(函数名) 干什么(函数功能)分类单行函数(如 concat、length、ifnull) 分组…

    2022/5/31 2:21:27 人评论 次浏览
  • 韩顺平零基础学Java MySQL student表

    创建学生表 CREATE TABLE student(id INT NOT NULL DEFAULT 1,NAME VARCHAR(20) NOT NULL DEFAULT ,chinese FLOAT NOT NULL DEFAULT 0.0,english FLOAT NOT NULL DEFAULT 0.0,math FLOAT NOT NULL DEFAULT 0.0); 添加信息 INSERT INTO student(id, `name`, chinese, eng…

    2022/2/21 19:30:07 人评论 次浏览
  • USTC English Club Note20211206

    #Musical Introduction# Waitress Theres one thing I have to mention first. If you couldnt accept one to have an affair with someone or sexual content, youd better not watch it. Many main characters of it all have an affair with others. This musical m…

    2022/2/1 6:59:48 人评论 次浏览
  • USTC English Club Note20211227

    #Back to the start# Can you still remember where it all began? Can you still remember the reason why you depart from the comfort zone? When looking back upon the experience, can you recognize yourself immediately? We should stay true to the origina…

    2022/1/31 6:06:08 人评论 次浏览
共61记录«上一页12345下一页»
扫一扫关注最新编程教程