Homework Day01

“”"
在这里插入图片描述

c = float(input('请输入一个摄氏温度:'))
f=c*9/5+32
print('%0.1f 摄氏温度转为华氏温度为 %0.1f ' %(c,f))

在这里插入图片描述

import math

radius = float(input('请输入圆的半径: '))
length = float(input('请输入圆的高'))
area = math.pi * radius * radius
volume = area*length
print('面积: %.2f' % area)
print('体积: %.2f' % volume)

在这里插入图片描述

feet = input('请输入英尺数:')
meters = float(feet)*0.305
print(meters)

在这里插入图片描述

M = float(input('请输入以千克计算的水量:'))
initialTemperature = float(input('请输入水的初始温度:'))
finalTemperature = float(input('请输入水的最终温度:'))
Q = M * (finalTemperature - initialTemperature)*4184
print('%.2f' % Q)

在这里插入图片描述

Annual_rate = float(input('请输入年利率:'))
difference = float(input('请输入差额:'))
interest = difference * (Annual_rate/1200)
print('%.2f' % interest)

在这里插入图片描述

v0 = float(input('请输入以米每秒为单位的初始速度v0:'))
v1 = float(input('请输入以米每秒为单位的末速度v1:'))
t = float(input('请输入以米每秒为单位速度变化所占用的时间t:'))
a = (v1 - v0)/t
print('%.2f' % a)

在这里插入图片描述

month_money = 100
Annual_rate = 0.05
month_rate = 0.00417
print('请存入100元')
x = 1 + 0.00417
first_month = 100 * x
second_month = first_month * x
three_month = second_month * x
four_month = three_month * x
five_month = four_month * x
six_month= five_month * x
print('账户总额%f'%six_month)

“”"
“”"

month = 0
moneyly = float(input('请存入100元:'))
for i in range(6):
    month =(moneyly + month) * (1 + 0.00417)
    print('六个月总额:%.f' %(month)

“”"

在这里插入图片描述

x = int(input('请输入0到1000之间的数字:'))
gw = x%10
sw = x/10%10
bw = x/10/10
sum = gw + sw + bw
print('sum:%d'% sum)
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值