標題:
continue, break, return (一)
[打印本頁]
作者:
tonyh
時間:
2021-9-18 19:21
標題:
continue, break, return (一)
continue 語法能強制程序立即跳入下一輪迴圈.
public class Ch26
{
public static void main(String args[])
{
for(int i=1; i<=10; i++)
{
if(i%2==0)
continue;
System.out.println(i);
}
}
}
複製代碼
作者:
蔡寓珉
時間:
2021-9-18 19:30
public class Ch21
{
public static void main(String args[])
{
for(int i=1; i<=10; i++)
{
if(i%2==0)
continue;
System.out.println(i);
}
}
}
複製代碼
作者:
余柏緯
時間:
2021-9-18 19:34
import java.lang.System;
import java.io.Console;
public class Ch29
{
public static void main(String args[])
{
for(int i=1;i<=10;i++)
{
if(i%2==0)
continue;
System.out.println(i);
}
}
}
複製代碼
作者:
林鼎傑
時間:
2021-9-18 19:40
public class Ch24
{
public static void main(String args[])
{
for(int i=1; i<=10; i++)
{
if(i%2==0)
continue;
System.out.println(i);
}
}
}
複製代碼
作者:
許洧熏
時間:
2021-9-18 19:41
public class Ch21
{
public static void main(String args[])
{
for(int i=1; i<=10; i++)
{
if(i%2==0)
continue;
System.out.println(i);
}
}
}
複製代碼
作者:
林土水
時間:
2021-9-18 19:42
public class Ch01
{
public static void main(String args[])
{
for(int i=1; i<=10; i++)
{
if(i%2==0)
continue;
System.out.println(i);
}
}
}
複製代碼
作者:
黃子倢
時間:
2021-9-18 19:46
public class Ch26
{
public static void main(String args[])
{
for(int i=1; i<=10; i++)
{
if(i%2==0)
continue;
System.out.println(i);
}
}
}
複製代碼
作者:
林佑宸
時間:
2021-9-18 19:47
public class Ch26
{
public static void main(String args[])
{
for(int i=1; i<=10; i++)
{
if(i%2==0)
continue;
System.out.println(i);
}
}
}
複製代碼
作者:
呂尚霖
時間:
2021-9-18 19:47
public class Ch26
{
public static void main(String args[])
{
for(int i=1; i<=10; i++)
{
if(i%2==0)
continue;
System.out.println(i);
}
}
}
複製代碼
作者:
吳湘儀
時間:
2021-9-18 19:51
public class Ch01
{
public static void main(String args[])
{
for(int i=1; i<=10; i++)
{
if(i%2==0)
continue;
System.out.println(i);
}
}
}
複製代碼
作者:
朱奕祐
時間:
2021-9-18 19:56
public class Ch26
{
public static void main(String args[])
{
for(int i=1; i<=10; i++)
{
if(i%2==0)
continue;
System.out.println(i);
}
}
}
複製代碼
作者:
冠宇
時間:
2021-9-18 19:57
public class Ch26
{
public static void main(String args[])
{
for(int i=1; i<=10; i++)
{
if(i%2==0)
continue;
System.out.println(i);
}
}
}
複製代碼
作者:
陳志祐
時間:
2021-9-18 19:57
public class Ch26
{
public static void main(String args[])
{
for(int i=1; i<=10; i++)
{
if(i%2==0)
continue;
System.out.println(i);
}
}
}
複製代碼
作者:
俞成章
時間:
2021-9-18 20:03
public class Ch26
{
public static void main(String args[])
{
for(int i=1; i<=10; i++)
{
if(i%2==0)
continue;
System.out.println(i);
}
}
}
複製代碼
作者:
王秉鈞
時間:
2021-9-18 20:24
public class Ch14
{
public static void main(String args[])
{
for(int i=1; i<=10; i++)
{
if(i%2==0)
continue;
System.out.println(i);
}
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2