close

public class hw002problem003 {

public static void main(String[] args) {
// TODO Auto-generated method stub
/*3. 試寫一程式, 可從螢幕輸出 1 到 100 之間屬於 5 或 7 的倍數的數值。 (原第五題)*/


for(int i=0;i<101;i++){

if (i%5==0||i%7==0) {
System.out.println(i);
}
}

}

}

arrow
arrow
    全站熱搜
    創作者介紹
    創作者 Dwell 的頭像
    Dwell

    歡迎詢價

    Dwell 發表在 痞客邦 留言(0) 人氣()