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

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

“while”循環(huán)未正確迭代

“while”循環(huán)未正確迭代

UYOU 2022-07-06 18:36:21
我應(yīng)該使用循環(huán)打印以下輸出:            1           2 1         3 2 1       4 3 2 1     5 4 3 2 1   6 5 4 3 2 1 7 6 5 4 3 2 1 此模式中的最大數(shù)字(在此示例中為 7)由用戶輸入確定。以下是該模式的適用代碼:index=patternLength+1; n=1;     //These values are all previously intitializedwhile (index!=1) {    index--;    printSpaces((index*2)-2);   //A static method that prints a certain number of spaces    while(n!=1) {        n--;        System.out.print(n + " ");    }    System.out.print("\n");    n=patternLength+1-index;}這是用戶輸入“7”的錯誤輸出:        1       2 1     3 2 1   4 3 2 1 5 4 3 2 1 錯誤輸出前有兩個空行;這些行具有完整/正確模式所需的正確數(shù)量的空格,但由于某種原因,實際數(shù)字在循環(huán)中開始打印得太“晚”。 換句話說,正確示例中出現(xiàn)在“1, 2 1”之前的空格在錯誤輸出中。缺少一些數(shù)字并使不正確的示例不正確。
查看完整描述

2 回答

?
FFIVE

TA貢獻(xiàn)1797條經(jīng)驗 獲得超6個贊

好,我知道了。


    index=patternLength+1; n=1;int nSetter=1;

    //Loop C

    System.out.println("Pattern C:");

    while (index!=1) {

        index--;

        printSpaces((index*2)-2);

        while(n!=0) {


            System.out.print(n + " ");

            n--;

        }

        System.out.print("\n");

        nSetter++;

        n = nSetter;

    }

我的問題是我的“n”需要上下移動,所以額外的變量“nSetter”似乎已經(jīng)解決了這個問題,盡管這可能是一個迂回的解決方案。任何。感謝@Andreas 為我指明了正確的方向,感謝@JohnKugelman 的幫助編輯。


查看完整回答
反對 回復(fù) 2022-07-06
?
慕尼黑5688855

TA貢獻(xiàn)1848條經(jīng)驗 獲得超2個贊

請嘗試此代碼,您的第二個 while 循環(huán)不正確。


int index = patternLength + 1;

        int n = 2;     //These values are all previously intitialized

        int i = 1;

        while (index != 1) {

            index--;

            printSpaces((index * 2) - 2);   //A static method that prints a certain number of spaces

            while (n != 1) {

                n--;

                System.out.print(n + " ");

            }

            System.out.print("\n");

            i++;

            n = i+1;

        }


查看完整回答
反對 回復(fù) 2022-07-06
  • 2 回答
  • 0 關(guān)注
  • 171 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號

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