返回列表 發帖

自訂函式 (一)

自訂函式:
1. void hello(int n)
2. int myPlus(int x,int y,int z)

  1. public class Ch50 {

  2.         static void hello(int n)
  3.         {
  4.                 for(int i=0; i<n; i++)
  5.                     System.out.println("Hello!!!");
  6.         }
  7.        
  8.         static int myPlus(int a, int b, int c)
  9.         {
  10.                 return a+b+c;
  11.         }
  12.        
  13.         public static void main(String[] args)
  14.         {
  15.                 hello(5);
  16.                 System.out.println(myPlus(1,2,3));
  17.         }
  18. }
複製代碼

  1. public class Ch01 {
  2.    
  3.         static void sayHello(int n)
  4.         {
  5.                 for(int i=0; i<=n; i++)
  6.                         System.out.println("Hello!!!");
  7.         }
  8.         static int myPlus(int a,int b,int c)
  9.         {
  10.                 return a+b+c;
  11.         }
  12.         public static void main(String[] args) {
  13.                 sayHello(7);
  14.                 System.out.println(myPlus(7, 4, 6));
  15.         }
  16. }
複製代碼

TOP

  1. public class Ch01 {
  2.         static void sayHello(int n){
  3.                 for(int i=0;i<n;i++)
  4.                         System.out.println("Hello!");
  5.         }       
  6.         static int myPlus(int a,int b,int c){
  7.                 return a+b+c;
  8.         }
  9.         public static void main(String[] args) {
  10.                 sayHello(5);
  11.                 System.out.println(myPlus(1,2,3));
  12.         }
  13. }
複製代碼

TOP

  1. public class Ch01
  2. {
  3.     static void sayHello(int n)
  4.     {
  5.             for(int i=1; i<=n; i++)
  6.                     System.out.println("Hello~~");
  7.     }
  8.     static int myPlus(int a, int b, int c)
  9.     {
  10.             return a+b+c;
  11.     }
  12.         public static void main(String[] args)
  13.         {
  14.                 sayHello(3);
  15.                 System.out.println(myPlus(1, 2, 3));

  16.         }

  17. }
複製代碼

TOP

  1. package bobo;

  2. public class bobo {
  3.         static void sayHello(int n)
  4.         {
  5.                 for(int i=0; i<n; i++)
  6.                 System.out.println("Hello!!!");       
  7.         }
  8.         static int myPlus(int a, int b, int c)
  9.         {
  10.                 return a+b+c;
  11.         }
  12.         public static void main(String[] args)
  13.         {
  14.         sayHello(5);       
  15.         System.out.println(myPlus(1,2,3));
  16.         }

  17. }
複製代碼

TOP

  1. package ggg;

  2. public class Ch50 {
  3.         static void hello(int n)
  4.         {
  5.                         for(int i=0; i<n; i++)
  6.                                 System.out.println("Hello!!!");
  7.         }
  8.         static int myPlus(int  a, int  b,int  c)
  9.         {
  10.                 return a+b+c;
  11.         }
  12.        
  13.         public static void main(String[] args)
  14.         {
  15.                         hello(5);
  16.                         System.out.println(myPlus(1,2,3));

  17.         }

  18. }
複製代碼

TOP

  1. public class Ch25 {
  2.         static void hello(int n)
  3.         {
  4.                 for(int i=0; i<n; i++)
  5.                         System.out.println("Hello");
  6.         }
  7.        
  8.         static int myPlus(int a, int b, int c)
  9.         {
  10.                 return a+b+c;
  11.         }
  12.         public static void main(String[] args)
  13.         {
  14.                 hello(5);
  15.                 System.out.println(myPlus(1,2,3));
  16.         }
  17. }
複製代碼

TOP

  1. public class Ch55 {
  2.     static void hello(int n)
  3.     {
  4.             for(int i=0;i<n;i++)
  5.                     System.out.println("hello");
  6.     }
  7.     static int myPlus(int a,int b,int c)
  8.     {
  9.             return a+b+c;
  10.     }
  11.         public static void main(String[] args)
  12.         {
  13.                 hello(5);
  14.                 System.out.println(myPlus(1,6,3));
  15.         }
  16. }
複製代碼

TOP

  1. public class C41 {
  2.         static void hello(int n)
  3.         {
  4.                 for(int i=0;i<n;i++)
  5.                         System.out.println("Hello!!!");
  6.         }
  7.         static int myPlus(int a,int b,int c)
  8.         {
  9.                 return a+b+c;
  10.         }

  11.         public static void main(String[] args)
  12.         {
  13.         hello(5);
  14.         System.out.println(myPlus(1,2,3));
  15.         }

  16. }
複製代碼

TOP

  1. public class Ch1
  2. {
  3.         static void hello(int n)
  4.         {
  5.                 for(int i=0; i<n; i++)
  6.                         System.out.println("Hello");
  7.         }
  8.         static int myPlus(int a,int b,int c)
  9.         {
  10.                 return a+b+c;
  11.         }
  12.         public static void main(String[] args)
  13.         {
  14.                 hello(5);
  15.                 System.out.println(myPlus(1, 2, 3));
  16.         }

  17. }
複製代碼

TOP

  1. public class Ch99 {
  2.         static void sayHello(int a)
  3.         {
  4.                 for(int i=0;i<=a;i++)
  5.                     System.out.println("Hello!!!");
  6.         }
  7.         static int myPlus(int a,int b,int c)
  8.         {
  9.                 return a+b+c;
  10.         }
  11.         public static void main(String[] args) {
  12.                 sayHello(5);
  13.                 System.out.println(myPlus(1,2,3));
  14.         }
  15. }
複製代碼

TOP

  1. public class Ch41
  2. {
  3.         static void sayHello(int n)
  4.         {
  5.                 for (int i=1;i<=n;i++)
  6.                         System.out.println("Hello!");
  7.         }
  8.         static int plus(int a,int b,int c)
  9.         {
  10.                 return a+b+c;
  11.         }
  12.         public static void main(String[] args) {
  13.                 sayHello(5);
  14.                 System.out.println(plus(1,2,3));
  15.         }
  16. }
複製代碼

TOP

  1. public class Hello {

  2.         static void sayHello(int n)
  3.         {
  4.                 for(int i=0;i<n;i++)
  5.                         System.out.println("Hello!!");
  6.         }
  7.         static int myPlus(int a, int b, int c)
  8.         {
  9.                 return a+b+c;
  10.         }


  11.         public static void main(String[] args)
  12.         {       
  13.                 sayHello(5);
  14.                 System.out.println(myPlus(1, 2, 3));
  15.         }

  16. }
複製代碼

TOP

返回列表