# -*- coding: utf-8 -*-
"""
功能:将数学公式转换成Python表达式
作者:cxf
时间:2021/10/21
"""
#输入部分
x =float(input('x ='))
y =float(input('y ='))
z =float(input('z ='))
#处理部分
n = 4 * y * x**3 - 5 * y**2 * z**4 + 7 * z**3 * x**2
#输出部分
print('n = {}'.format(n))
# -*- coding: utf-8 -*-
"""
功能:将数学公式转换成Python表达式
作者:cxf
时间:2021/10/21
"""
#输入部分
x =float(input('x ='))
y =float(input('y ='))
#处理部分
n = (4 * x**2 + 5 * x -1)/(2 * x**2 - 3 * x + 7) + (2 * y**2 - 5 * y + 1) / (3 * y**2 + 7 * y - 3)
#输出部分
print('n = {}'.format(n))
# -*- coding: utf-8 -*-
"""
功能:将数学公式转换成Python表达式
作者:cxf
时间:2021/10/21
"""
#输入部分
x =float(input('x ='))
#处理部分
if 2 * x**2 - 3 * x - 5 >=0:
n =((2 * x**2 - 3 * x - 5) **0.5 + x - 3) / x **3 + 5 * x **2 - 4 * x + 7
#输出部分
print('n = {}'.format(round(n,2)))
else:
prit('请重新输入一个数')
计算圆的周长和面积
# -*- coding: utf-8 -*-
"""
功能:计算圆的周长和面积
作者:cxf
时间:2021/10/21
"""
import math
#输入部分
r =float(input('圆半径 ='))
#处理部分
c = 2 * r * math.pi
s = math.pi * r **2
#输出部分
print('圆周长 = {}'.format(c))
print('圆面积 = {}'.format(s))
?编程计算各位数字的平方和
# -*- coding: utf-8 -*-
"""
功能:编程计算五位数的各位数字的平方和
作者:cxf
时间:2021/10/21
"""
while id:
id = int(input('请输入数字:'))
if id >9999 and id < 100000:
x1, x2, x3, x4, x5 = map(int, str(id))
sum = x1 **2 + x2 **2 + x3 **2 + x4 **2 + x5 **2
print(sum)
break
else:
print('请重新输入5位整数')
continue
|