返回列表 發帖

continue, break, return (二)

break 語法能強制程序立即跳出所在迴圈.
  1. public class Ch27
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         for(int i=1; i<=10; i++)
  6.         {
  7.              if(i==5)
  8.                  break;
  9.              System.out.println(i);
  10.         }
  11.         for(int i=1; i<=10; i++)
  12.         {
  13.              System.out.println(i);
  14.         }
  15.     }
  16. }
複製代碼

  1. public class text123 {
  2.         public static void main(String[] args) {
  3.                 for(int i=1;i<=10;i++)
  4.                 {
  5.                         if(i==5)
  6.                                 break;
  7.                         System.out.println(i);
  8.                 }
  9.                 for(int i=1;i<=10;i++)
  10.                 {
  11.                         System.out.println(i);
  12.                 }
  13.                 }
  14.         }
  15.        
複製代碼
張閎鈞OuO

TOP

  1. public class ASDF
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         for(int i=1;i<=10;i++)
  6.         {
  7.                 if(i==5)
  8.                         break;
  9.                 System.out.println(i);
  10.         }
  11.         for(int i=1; i<=10; i++)
  12.         {
  13.              System.out.println(i);
  14.         }
  15.     }
  16. }
複製代碼
我是眾神之王XXX  I love you
0000000000

TOP

  1. public class Ch05 {
  2.         public static void main(String args[]) {
  3.                 for (int i = 1; i <= 10; i++) {

  4.                         if (i == 5)
  5.                                 break;
  6.                         System.out.println(i);

  7.                 }
  8.                 for (int i = 1; i <= 10; i++) {
  9.                         System.out.print(i);
  10.                 }
  11.         }
  12. }
複製代碼

TOP

  1. public class Ch05 {
  2.         public static void main(String args[]) {
  3.                 for (int i = 1; i <= 10; i++) {
  4.                         if (1 == 5)
  5.                                 break;
  6.                         System.out.println(i);
  7.                 }
  8.                 for (int i = 1; i <= 10; i++) {
  9.                         System.out.println(i);
  10.                 }
  11.         }
  12. }
複製代碼

TOP

  1. package ch01;

  2. public class Ch02 {
  3.         public static void main(String args[]) {
  4.                 for (int i = 1; i <= 10; i++) {
  5.                         if (i == 12) {
  6.                                 break;
  7.                         }
  8.                         System.out.println(i);
  9.                 }       
  10.         for(int i=1;i<=10;i++){
  11.                 System.out.println(i);
  12.         }
  13.         }
  14. }
複製代碼

TOP

  1. package nsez;

  2. public class nsez {       
  3.             public static void main(String args[])
  4.             {
  5.                 for(int a =1; a<=10; a++)
  6.                 {
  7.                      if(a%2==0)
  8.                          break;
  9.                      System.out.println(a);
  10.                 }
  11.             }
  12.         }
複製代碼

TOP

  1. public class junior
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         for(int i=1; i<=10; i++)
  6.         {
  7.              if(i==5)
  8.                  break;
  9.              System.out.println(i);
  10.         }
  11.         for(int i=1; i<=10; i++)
  12.         {
  13.              System.out.println(i);
  14.         }
  15.     }
  16. }
複製代碼

TOP

  1. import java.util.Scanner;

  2. public class Ch05 {
  3.         public static void main(String args[]) {

  4.                 for (int y = 1; y < 10; y = y + 1) {
  5.                         if (y == 5)
  6.                                 break;
  7.                         System.out.println(y);
  8.                 }
  9.                
  10.                         for (int y = 1; y < 10; y = y + 1)
  11.                         {
  12.                                 System.out.println(y);
  13.                         }               
  14.                
  15.         }
  16. }
複製代碼

TOP

返回列表