第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

我的腳本無(wú)法正常工作,但我相信代碼是正確的

我的腳本無(wú)法正常工作,但我相信代碼是正確的

烙印99 2023-08-22 10:12:10
我不明白為什么我的腳本不起作用!有人可以幫忙嗎?。?!我正在為我的計(jì)算機(jī)科學(xué)課做這個(gè)。這是代碼:feet1 = int(input('Enter the Feet: '))inches1 = int(input('Enter the Inches: '))feet2 = int(input('Enter the Feet: '))inches2 = int(input('Enter the Inches: '))feet_sum = (feet1 + feet2)inches_sum = (inches1 + inches2)def check(inches_sum, feet_sum):    while True:        if (inches_sum) > 12:            inches_sum -= 12            feet_sum += 1            return feet_sum            return inches_sum            breakcheck(inches_sum, feet_sum)print('Feet: {} Inches: {}'.format(feet_sum, inches_sum))更新:這行得通嗎?我非常確定它應(yīng)該在循環(huán)中獲取變量并檢查英寸是否超過(guò) 12,當(dāng)英寸不超過(guò) 12 時(shí),它將中斷循環(huán)。那有意義嗎?feet1 = int(input('Enter the Feet: '))inches1 = int(input('Enter the Inches: '))feet2 = int(input('Enter the Feet: '))inches2 = int(input('Enter the Inches: '))feet_sum = (feet1 + feet2)inches_sum = (inches1 + inches2)def check(inches, feet):    while True:        if (inches_sum) > 12:            inches_sum -= 12            feet_sum += 1        else:            breakcheck(inches_sum, feet_sum)print('Feet: {} Inches: {}'.format(feet_sum, inches_sum))
查看完整描述

2 回答

?
倚天杖

TA貢獻(xiàn)1828條經(jīng)驗(yàn) 獲得超3個(gè)贊

無(wú)需函數(shù)即可完成此操作,否則您需要處理返回值。還可以使用 while 而不是 if 來(lái)使其更加健壯:


feet1 = int(input('Enter the Feet: '))

inches1 = int(input('Enter the Inches: '))

feet2 = int(input('Enter the Feet: '))

inches2 = int(input('Enter the Inches: '))


feet_sum = (feet1 + feet2)

inches_sum = (inches1 + inches2)


while (inches_sum) > 12:

  inches_sum -= 12

  feet_sum += 1


print('Feet: {} Inches: {}'.format(feet_sum, inches_sum))

另外,負(fù)數(shù)不會(huì)被處理,留給你作為練習(xí):)


一切正常后,您可以嘗試將其提取為史蒂夫的答案中的函數(shù)。


查看完整回答
反對(duì) 回復(fù) 2023-08-22
?
小怪獸愛(ài)吃肉

TA貢獻(xiàn)1852條經(jīng)驗(yàn) 獲得超1個(gè)贊

我想這就是你想要的:


feet1 = int(input('Enter the Feet: '))

inches1 = int(input('Enter the Inches: '))

feet2 = int(input('Enter the Feet: '))

inches2 = int(input('Enter the Inches: '))


feet_sum = (feet1 + feet2)

inches_sum = (inches1 + inches2)


def check(inches_sum, feet_sum):

    while (inches_sum) >= 12:

        inches_sum -= 12

        feet_sum += 1

    return inches_sum, feet_sum


inches_sum, feet_sum = check(inches_sum, feet_sum)


print('Feet: {} Inches: {}'.format(feet_sum, inches_sum))

結(jié)果:


Enter the Feet: 1

Enter the Inches: 26

Enter the Feet: 1

Enter the Inches: 26

Feet: 6 Inches: 4


查看完整回答
反對(duì) 回復(fù) 2023-08-22
  • 2 回答
  • 0 關(guān)注
  • 138 瀏覽
慕課專(zhuān)欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)