是的,這是家庭作業,但我無法弄清楚如何僅使用for循環。如何僅使用for循環創建此結構
我能夠用重現結構循環,如果else語句,但我的教練告訴我,不會飛。
public class Problem3 {
public static void main(String[] args) {
/** Code under here */
int box = 22;
for(int i=22; i>0; i--)
{
if(i==18)
System.out.println("\\\\"+"!!!!!!!!!!!!!!!!!!"+"//");
else if(i == 14)
System.out.println("\\\\\\\\"+"!!!!!!!!!!!!!!"+"////");
else if (i== 10)
System.out.println("\\\\\\\\\\\\"+"!!!!!!!!!!"+"//////");
else if (i == 6)
System.out.println("\\\\\\\\\\\\\\\\"+"!!!!!!"+"////////");
else if (i == 2)
System.out.println("\\\\\\\\\\\\\\\\\\\\"+"!!"+"//////////");
else if(i == 22)
System.out.println("!!!!!!!!!!!!!!!!!!!!!!");
}
System.out.println("");
}
}
使用嵌套循環來構建的字符串。 – SLaks
@SLaks ...我知道我需要這樣做。我的問題是如何。 –
哦,我要把這個送給我的學生。 –