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

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

分隔數(shù)字的數(shù)字

分隔數(shù)字的數(shù)字

慕村9548890 2023-05-11 16:54:27
我正在編寫一個(gè)程序來接收一個(gè)正數(shù)并分別輸出每個(gè)數(shù)字。例如,如果輸入是 692,程序應(yīng)該輸出 2、9、6。我必須使用 while 循環(huán)并使用模數(shù)運(yùn)算符 (%) 分隔數(shù)字。數(shù)字應(yīng)該分開,而不是將數(shù)字視為字符串并以數(shù)學(xué)方式處理。代碼:HTML<div class="column1">    <div class="input">      <button onclick="problem_09()"> Run the program </button>    </div>    <strong><p id="output"> </p></strong></div>JavaScriptfunction problem_09() {    var outputObj = document.getElementById("output");    var a = parseInt(prompt("Please enter a number: ", ""));    var digits = "";    while(a >= 0){        var d = a % 10;        outputObj.innerHTML= "number: "+a+"<br><br>its digits: " + d;        a = Math.floor(a/10);    }      outputObj.innerHTML = outputObj.innerHTML + "<br><br>" + "program ended";    document.getElementsByTagName("button")[0].setAttribute("disabled","true");}
查看完整描述

2 回答

?
MYYA

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

這是解決方案:


HTML:


<div class="column1">

? ? <div class="input">

? ? ? <button onclick="problem_09()"> Run the program </button>

? ? </div>

? ? <strong><div id="output"> </div></strong>

? </div>


記者:



function problem_09() {

? var outputObj = document.getElementById("output");

? var a = parseInt(prompt("Please enter a number: ", ""));

? var digit = "";

? outputObj.innerHTML = ""

? while(a > 0){

? ? let num = a%10

? ? a = Math.floor(a/10)

? ? digit += "<p>"+num+"</p>"

? }

? outputObj.innerHTML = digit + "<br><br>" + "program ended";

? document.getElementsByTagName("button")[0].setAttribute("disabled","true");

}

查看完整回答
反對(duì) 回復(fù) 2023-05-11
?
慕標(biāo)琳琳

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

從數(shù)學(xué)上講,取余數(shù)模 10 除以 10。在簡(jiǎn)單的代碼中,


num = some number

while (num>0):

    print(num%10)

    num = num/10


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

添加回答

舉報(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)