1. 五个PPT上的界面打印【print、input函数】
print("\t\t\t\t\t英雄联盟商城登录界面\n~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~\n\t\t\t\t\t1. 用户登录\n\t\t\t\t\t2. 新用户注册\n\t\t\t\t\t3. 退出系统\n"
"~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~\n\t")
a=input("(温馨提示)请输入您的选项:")
print("\t\t\t\t\t英雄联盟商城首页\n~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~\n\t\t\t\t\t1. 进入英雄超市\n\t\t\t\t\t2. 休闲小游戏\n\t\t\t\t\t3. 退出登录\n"
"~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~\n\t")
a=input("(温馨提示)请输入您的选项:")
print("英雄商城英雄列表\n~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~* ~ * ~* ~* ~ * ~\n编号\t\t姓名\t\t\t昵称\t\t\t\t价格\t\t\t库存\t\t\t描述\n"
"1\t\t纳尔\t\t\t迷失之牙\t\t\t3500\t\t100\t\t丛林不会原谅盲目与无知\n"
"2\t\t锐雯\t\t\t放逐之刃\t\t\t4000\t\t100\t\t她是残忍高效的战士\n"
"3\t\t薇恩\t\t\t暗夜猎手\t\t\t3500\t\t100\t\t这个世界不想人们想象的那么美好\n"
"4\t\t扎克\t\t\t生化魔人\t\t\t3000\t\t100\t\t即使你没有脊柱,你也必须站起来\n"
"5\t\t杰斯\t\t\t未来守护者\t\t2500\t\t100\t\t武装着睿智与魅力,你的选择没有错\n"
"~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~* ~ * ~* ~* ~ * ~\n\t")
a=input("(温馨提示)请输入您要购买的英雄编号:")
print("\t\t\t\t\t英雄商城购买英雄\n英雄购买票据\n"
"~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~\n"
"\t\t\t英雄名称:盲僧(史诗)\n"
"\t\t\t英雄属性:生命值428(+85)/能量值200(+0)/移动速度425/攻击力55.8(+3.2)\n"
"\t\t\t\t\t攻击速度0.651(+3.1%)/护甲值24(+1.25)/攻击距离125\n"
"\t\t\t英雄座右铭:一人之行可灭世,众人之勤可救世!\n"
"\t\t\t英雄价格:3000\n"
"\t\t\t活动折扣:9.5\n\n"
"\t\t\t插播广告:当风云变色,当流离失所,世界不再是旧日模样\n"
"\t\t\t你是否会为了自己的梦想战斗,直至力战身亡,直至彼岸他乡\n"
"~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~\n\t")
a=input("(温馨提示)请付款:")
print("\t\t\t\t\t英雄商城购买英雄\n英雄购买票据\n"
"~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~\n"
"\t\t\t英雄名称:九尾妖狐(史诗)\n"
"\t\t\t英雄价格:10000\n"
"\t\t\t活动折扣:9.5\n\n"
"\t\t\t应付付款:9500\n"
"\t\t\t实际付款:10000\n"
"\t\t\t找零:500\n\n"
"插播广告:当风云变色,当流离失所,世界不再是旧日模样\n"
"你是否会为了自己的梦想战斗,直至力战身亡,直至彼岸他乡\n"
"~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~")
a=input("(温馨提示)按任意键返回上一级菜单:")
2. 作业:给定成绩,判断用户成绩的档次
100:提示满分
90~100:优秀
80~100:良好
70~80:还可以,多多努力
60~70:合格
0~60:不合格
0:鸡蛋
source = int(input("输入成绩:"))
if 100>=source>=100:print("满分")
elif(100> source >=90):print("优秀")
elif(90> source >=80):print("良好")
elif (80 > source >= 70):print("还可以,多多努力")
elif(70 > source >=60):print("合格")
elif(60 > source >0):print("不合格")
elif (0>= source>= 0):print("鸡蛋")
else:print("输入错误")
3. 作业:下列哪一项是“4是奇数或-9为正数”的否定( C )
A、4是偶数或-9不是负数
B、4是奇数或-9不是负数
C、4是偶数和-9是负数
D、4是奇数和-9不是负数
4. 作业:判断一个整数是奇数还是偶数
num = int(input("输入一个数:"))
if num % 2 == 0:print("%d 是偶数" % num)
else:print("%d 是奇数" % num)
5. 求矩形的面积和周长
a = int(input("请输入矩形的长:"))
b = int(input("请输入矩形的宽:"))
area = a * b
print("矩形的面积为:", area)
C = 2 * (a + b)
print("矩形的周长为:", C)
6. 根据天数(从控制台上输入)计算这一年中的周数和剩余的天数
year = int(input("请输入年份:"))
days = int(input("请输入天数:"))
is_leap_year = False
if (year % 4 == 0 and year % 100 != 0) or (year % 400 == 0):is_leap_year = True
# 根据是否为闰年设置一年的总天数
total_days_in_year = 366 if is_leap_year else 365
# 计算周数和剩余的天数
weeks = days // 7
remaining_days = days % 7# 输出结果
print("这一年中有 {} 周和 {} 天的剩余时间".format(weeks, remaining_days))
7. 根据已知圆的半径radius(从控制台上输入),求其面积和周长(PI可以使用math.pi,也可以使用3.14)
import math
radius = float(input("请输入圆的半径:"))
area = math.pi * radius ** 2
C = 2 * math.pi * radius
print("圆的面积:", area)
print("圆的周长:", C)
8. 输入一个年份,判断该年是否是闰年
year=int(input("请输入一个年份:"))
if(year%4==0 and year%100!=0) or year%400==0:print(year,"是闰年")
else:print(year,"不是闰年")
9. 输入赵本山的考试成绩,显示所获奖励
成绩==100分,爸爸给他买辆车
成绩>=90分,妈妈给他买MP4
90分>成绩>=60分,妈妈给他买本参考书
成绩<60分,什么都不买
source = int(input("输入赵本山的考试成绩:"))
if source==100:print("爸爸给他买辆车")
elif(100> source >=90):print("妈妈给他买MP4")
elif(90> source >=60):print("妈妈给他买本参考书")
elif (source < 60):print("什么都不买")
else:print("输入错误")
10. 计算器:请输入两个数和一个符号,完成两个数的+ - * / % // **
a=float(input("输入数字a:"))
b=float(input("输入数字b:"))
print(f'{a} + {b} = {a+b}')
print(f'{a} - {b} = {a-b}')
print(f'{a} * {b} = {a*b}')
print(f'{a} / {b} = {a/b}')
print(f'{a} // {b} = {a//b}')
print(f'{a} % {b} = {a%b}')
print(f'{a} ** {b} = {a**b}')
11. 健康计划
用户输入身高(m),体重(kg)
计算公式:BMI = 体重 / 身高^2
BMI < 18.5:过轻
18.5≤ BMI <24:正常
24 ≤ BMI <27:过重
27 ≤ BMI < 30:轻度肥胖
30 ≤ BMI < 35:中度肥胖
BMI ≥ 35:重度肥胖
a = float (input("请输入您的身高(m):"))
b = float (input("请输入您的体重(kg):"))
BMI = b / (a * a)
if BMI < 18.5:print("过轻")
elif BMI >= 18.5 and BMI < 24:print("正常")
elif BMI >= 24 and BMI < 27:print("过重")
elif BMI >= 27 and BMI < 30:print("轻度肥胖")
elif BMI >= 30 and BMI < 35:print("中度肥胖")
elif BMI >= 35:print("重度肥胖")
12. 设计一个程序,完成(英雄)商品的购买(界面就是第一天打印的界面)
展示商品信息(折扣)->输入商品价格->输入购买数量->提示付款
输入付款金额->打印购买小票(扩展)
print("\n\t\t英雄商城购买英雄")
print("英雄信息")
print("~ *" * 14)
print("\n")
print("\t英雄联盟:盲僧(史诗)")
print("\t英雄属性:生命值(428)/能量值200(+0)/移动速度425/攻击力/55.8(+3.2)")
print("\t\t攻击速度0.651(+3.1%)/护甲值24(+1.25)/攻击距离125\n")
print("\t英雄座右铭:一人之行可灭世,众人之勤可救世!")
print("\t英雄价格:3000")
print("\t折扣价格:9.5\n")
print("插播广告:当风云变色,当流离失所,世界不再是旧日模样")
print("你是否会为了自己的梦想战斗,直至力战身亡,直至彼岸他乡 ")
print("~ *" * 14)
a = int(input("请输入商品价格:"))
b = int(input("请输入购买数量:"))
c = int(input("(温馨提示)请付款:"))
m = a * b * 0.95
n = c - m
while n < 0:print("您的金额不够")break
else:print("购买成功")print("\n\t\t英雄商城购买英雄")print("英雄购买票据")print("~ *" * 14)print("\n")print("\t英雄联盟:盲僧(史诗)")print("\t英雄价格:3000")print("\t折扣价格:9.5\n")print("\t购买数量:{}".format(b))print("\t应付付款:{}".format(m))print("\t实际付款:{}".format(c))print("\t找零:{}".format(n))print("插播广告:当风云变色,当流离失所,世界不再是旧日模样")print("你是否会为了自己的梦想战斗,直至力战身亡,直至彼岸他乡 ")print("~ *" * 14)input("(温馨提示)按任意键返回上一级菜单:")
13. 输入三边的长度,求三角形的面积和周长(海伦公式)
#输入三边边长
a = float(input("请输入第一条边长:"))
b = float(input("请输入第二条边长:"))
c = float(input("请输入第三条边长:"))
#判断能否构成三角形
while a + b <= c or a + c <= b or c + b <= a:print("您输入的三条边不能构成三角形")a = float(input("请输入第一条边长:"))b = float(input("请输入第二条边长:"))c = float(input("请输入第三条边长:"))
#求出半周长
p = (a + b + c) / 2
#使用海伦公式计算面积
area = (p*(p-a)*(p-b)*(p-c))**0.5
#输出面积
print("面积为:%.2f"%area)