使用 python 實現隨機生成 200 無重複啟用碼(或者優惠券),字串長度大於5以上.import random
count = 0
s1 = set()
while true:
s = 'abcdefghjkl1234567890'
ys = ''
for i in range(6):
ys += random.choice(s)
print (ys)
s1.add(ys)
if len(s1) == 200:
break
print(s1)
列印出100以內的斐波那契數列,使用2種方法實現.
lst=[1,1]for i in range(2,20):
print(lst)
if lst[i-1] + lst[i-2] > 100:
break
print(lst)
# 鑾峰彇鐢ㄦ埛杈撳靉鏁版嵁交作業過程:nterms = int(input("浣犻渶瑕佸嚑欏癸紵"))
# 絎竴鍜岀浜岄」
n1 = 0
n2 = 1
count = 2
# 鍒ゆ柇杈撳靉鐨勫€兼槸鍚﹀悎娉�
if nterms <= 0:
print("璇瘋緭鍏ヤ竴涓鏁存暟銆�")
elif nterms == 1:
print("鏂愭嘗閭e鏁板垪錛�")
print(n1)
else:
print("鏂愭嘗閭e鏁板垪錛�")
print(n1,",",n2,end=" , ")
while count < nterms:
nth = n1 + n2
print(nth,end=" , ")
# 旋存柊煉�
n1 = n2
n2 = nth
count += 1
2、跳轉d盤,
在命令列輸入
第二週作業
實驗作業 1.編寫調式執行第乙個c 程式,要求輸出你的班級 姓名和學號 2.輸入課本例題1.2,除錯執行程式,並分析程式。3.分析程式中哪些是識別符號,哪些是關鍵字。4.回答什麼是程式 工程,原始檔 目標檔案 執行檔案 編譯預處理 名字空間 函式.主函式 功能 顯示輸出班級 姓名 學號 includ...
第二週作業
第一題 include stdafx.h int main int argc,char argv 第二題 include using namespace std int max int x,int y int main 好吧,老師我實在不知道錯在 啊。我都是照著書本來打的,打了幾次還是這樣。第三題 ...
第二週作業
作業1 輸出學生的班級 姓名和學號 include using namespace std int main 以下是主函式 int main 主函式 int number1,number2 定義兩個基本整型變數 number1和number2 cout 請輸入兩個數 輸出 請輸入兩個數 cin nu...