Python 20

作者: 秋雨夏磊 | 来源:发表于2022-07-20 07:51 被阅读0次

#省略代码不可行,错误的示范

grade =int(input())

if grade >=90:

print('A')

elif grade >=70:

print('C')

elif grade >=80:

print('B')

elif grade >=60:

print('D')

elif grade <60:

print('E')

-------------------------------------------------------------

for iin range(1, 101):

if(i %5 and i %7) ==0:

print(i)

输出1到100所有能被5或者7同时整除的整数

相关文章

网友评论

      本文标题:Python 20

      本文链接:https://www.haomeiwen.com/subject/hvljirtx.html