1. 程式人生 > >12月13日學習筆記-幾個練習題

12月13日學習筆記-幾個練習題

99乘法表:
# for j in range(1,10):
#     for i in range(1,10):
#         print("%s\t * %s\t = %d\t "%(j,i,i*j),end='')
#     print("")
#求素數:
# def primeNumber(start, end):
#     x = 0 #計數器
#     for i in range(start, end + 1):
#         result = True
#         for j in range(2, i-1): #最簡單的判斷素數的方法
#             if i % j == 0:
# result = False # if result == True: # print(i,end='\t') # x += 1 # if x % 10 == 0: #10個列印一行 # print() # primeNumber(100,200) #判斷瑞年 ''' 請用函式實現一個判斷使用者輸入的年份是否是閏年的程式 提示:1.能被400整除的年份2.能被4整除,但是不能被100整除的年份 以上2種方法滿足一種即為閏年''' years = int(input
("請輸入您要判斷的年份")) if years >= 1000 and years <=10000: if years % 400 == 0: print("Yes,這是一個瑞年") elif years % 4 ==0: print("Yes,這是一個瑞年") else: print("No,這不是一個閏年") else: print("您的輸入有誤,請您重新輸入")
'''
提示使用者進行輸入資料
獲取使用者的資料資料(需要獲取2個)
對獲取的兩個數字進行求和執行,並輸出相應的結果'''
#加法
# print('='*50,'string','='*50)
# fritst_num = int(input("請輸入第一個數字:")) # tow_num = int(input("請輸入第二個數字:")) # print("%d + %d = %d"%(fritst_num,tow_num,fritst_num+tow_num)) # print('='*50,'end','='*50) #減法 ''' 提示使用者進行輸入資料 獲取使用者的資料資料(需要獲取2個) 對獲取的兩個數字進行減法執行,並輸出相應的結果''' # print('='*50,'string','='*50) # fritst_num = int(input("請輸入第一個數字:")) # tow_num = int(input("請輸入第二個數字:")) # print("%d - %d = %d"%(fritst_num,tow_num,fritst_num - tow_num)) # print('='*50,'end','='*50)