You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
from add import add
|
|
from multiply import multiply
|
|
|
|
def main():
|
|
x = 5
|
|
y = 3
|
|
|
|
sum_result = add(x, y)
|
|
mul_result = multiply(x, y)
|
|
|
|
print("加法结果:", sum_result)
|
|
print("乘法结果:", mul_result)
|
|
|
|
if __name__ == "__main__":
|
|
main() |