PTA1(python3)
7-2 jmu-python-hello
给⾃⼰打个招呼吧,输出hello,XX
输⼊格式:
输⼊某个名字
输出格式:
输出hello,XX
输⼊样例:
Python语⾔
输出样例:
hello,Python语⾔
7-3 编程从键盘读⼊3个整数,输出它们的和与平均值(⾼教社,《Python编程基础及应⽤》习题3-6) 编程从键盘读⼊3个整数,输出它们的和与平均值。其中,平均值保留2位⼩数。
输⼊格式:
python格式化输出format整数1
整数2
整数3
输出格式:
和,平均值
输⼊样例:
1
2
3
输出样例:
6,2.00
注意:和与均值间只有⼀个英⽂逗号,没有多余的空格。使⽤input( )函数时,不要添加输出参数,对于OJ⽽⾔,input(“提⽰信息”)中的提⽰信息也是输出的⼀部分,会影响OJ判题。
7-4 分⾏显⽰信息 编写程序显⽰“Welcome to Python”、“Welcome to Computer Science”、“Programming is fun”输⼊格式:
⽆
输出格式:
显⽰三⾏信息
输⼊样例:
在这⾥给出⼀组输⼊。例如:Python (python3)name = input ()print ("hello,{}".format (name ))
1
2
3a =int (input ())b =int (input ())c =int (input ())e =a +b +c r =(a +b +c )/3print ("%d,%.2f" %(e ,r ))
1
2
3
4
5
6
输出样例:
在这⾥给出相应的输出。例如:
Welcome to Python
Welcome to Computer Science
Programming is fun
7-5 从键盘输⼊两个数,求它们的和并输出 本题⽬要求读⼊2个整数A和B,然后输出它们的和。输⼊格式:
在⼀⾏中给出⼀个被加数
在另⼀⾏中给出⼀个加数
输出格式:
在⼀⾏中输出和值。
输⼊样例:
在这⾥给出⼀组输⼊。例如:
18
-48
输出样例:
在这⾥给出相应的输出。例如:print ("Welcome to Python") print ("Welcome to Computer Science")print ("Programming is fun")
1
2
3a =int (input ())b =int (input ())print (a +b )1
2
3
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论