返回列表 發帖

自訂函式 (一)

自訂函式:
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. package 自訂函式;

  2. public class ch01 {

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

TOP

  1. public class Ch01 {

  2.         public static 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.        
  16.                 hello(5);
  17.                 System.out.println(myplus(1,2,3));
  18.         }

  19.        
  20.                
  21.         }

  22.        
  23.        
複製代碼

TOP

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

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

TOP

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

TOP

  1. public class Ch03 {
  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 Ch01 {
  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.        
  13.         public static void main(String[] args) {
  14.             hello(87);
  15.             System.out.println(myPlus(5,8,7));
  16.         }
  17. }
複製代碼

TOP

  1. public class Ch01 {
  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 Ch222 {
  2.         static void hello(int x)
  3.         {
  4.                 for(int i=0; i<x; i++)
  5.                         System.out.println("H E L L O ! !");
  6.         }
  7.         static int uniPlus(int a, int b, int c)
  8.         {
  9.                 return a*3+b*2+c;
  10.         }

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

  14.         }

  15. }
複製代碼

TOP

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

  14.         public static void main(String[] args)
  15.         {
  16.              hello(5);
  17.              System.out.println(myPlus(1,2,3));
  18.             

  19.         }

  20. }
複製代碼

TOP

  1. public class Ch50{
  2.          
  3.             static void hello(int n){
  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.                     return a+b+c;
  9.             }

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

TOP

  1. public class Ch15 {

  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.                
  17.         }

  18. }
複製代碼

TOP

  1. public class Ch87 {

  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.         hello(5);
  14.         System.out.println(myPlus(1,2,3));
  15.         }
  16. }
複製代碼

TOP

  1. package o;

  2. import java.util.Scanner;

  3. import java.util.*;
  4. public class foraddfinal
  5. {
  6.        
  7.                 static void hello (int n)
  8.                 {
  9.                         for (int i=0;i<n;i++)
  10.                                 System.out.println("Hello!!!!");
  11.                 }
  12.                 static int myPlus(int a,int b,int c)
  13.                 {
  14.                         return a+b+c;

  15.                 }
  16.                 public static void main(String args[])

  17.                 {
  18.                         hello(5);
  19.                         System.out.println(myPlus(1,2,3));

  20.                 }
  21.         }
複製代碼

TOP

  1. public class Ch12 {

  2.         static void hello(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.     {
  8.             return a+b+c;
  9.     }
  10.     public static void main(String[] args)
  11.     {
  12.                 hello(5);
  13.                 System.out.println(myPlus(1,2,3));
  14.     }
  15. }
複製代碼

TOP

  1. public class Ch01 {

  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. }
複製代碼

TOP

  1. public class ch02 {
  2.        
  3.         static void hello(int n)
  4.         {
  5.                 for(int i=0;i<n;i++)
  6.                         System.out.println("Hello");
  7.         }
  8.        
  9.         static int myPlus(int a,int b,int c)
  10.         {
  11.                 return a+b+c;
  12.         }
  13.        
  14.         public static void main(String[] args)
  15.         {
  16.                 hello(5);
  17.                 System.out.println(myPlus(1,2,3));
  18.         }
  19. }
複製代碼
我好帥
我超級帥
我非常的帥
我宇宙第一帥

TOP

  1. public class Ch01
  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 Ch01 {

  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 Ch01{

  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.                return a+b+c;
  10.        }  
  11.               
  12.               public static void main(String[]args)
  13.               {
  14.                       hello(5);
  15.                       System.out.println(myPlus(1,2,3));
  16.               }

  17. }             
複製代碼

TOP

返回列表