返回列表 發帖

自訂函式 (一)

自訂函式:
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 asdf;
  2. public class QWER
  3. {
  4.         static void hello(int n)
  5.     {
  6.           for(int i=0; i<n; i++)
  7.           {
  8.                   System.out.println("Hello!!!");
  9.           }         
  10.     }
  11.     static int myPlus(int a, int b, int c)
  12.     {
  13.          return a+b+c;
  14.     }
  15.     public static void main(String[] args)
  16.     {
  17.          hello(5);
  18.          System.out.println(myPlus(1,2,3));
  19.     }
  20. }
複製代碼
我是眾神之王XXX  I love you
0000000000

TOP

  1. package text369;
  2. public class text45 {
  3.         static void maroon(int n)
  4.         {
  5.                 for(int i=1;i<=n;i++)
  6.                         System.out.println("sghs");
  7.         }
  8.         static int io(int x,int y,int z)
  9.         {
  10.                 return x+y+z;
  11.         }
  12.         public static void main(String[] args) {

  13.                 maroon(5);
  14.                 System.out.print(io(1,2,3));
  15.                
  16.         }

  17. }
複製代碼
張閎鈞OuO

TOP

  1. public class Ch09 {
  2.         public static void main(String args[]) {

  3.                 hello(6);
  4.                 System.out.println(myPlus(1, 2, 3));

  5.         }

  6.         static int myPlus(int a, int b, int c) {
  7.                 return a + b + c;
  8.         }

  9.         static void hello(int n) {
  10.                 for (int i = 0; i < n; i += 1) {
  11.                         System.out.println("hello!!");
  12.                 }
  13.         }
  14. }
複製代碼

TOP

  1. import java.util.*;

  2. public class Ch01 {
  3.     static void hello(int n){
  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.                 hello(10);
  14.                 System.out.println(myplus(1,2,3));
  15.         }
  16.                  
  17. }
複製代碼

TOP

  1. public class ch {

  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.                 return a + b + c;
  8.         }

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

TOP

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

TOP

  1. import java.util.Scanner;

  2. public class junior {
  3.         static void asd(int a){
  4.                 for (int i=1; i <=a;i+=1)
  5.                         System.out.print("GEM~~");
  6.         }
  7.         static int love(int a ,int b , int c){
  8.                 return (a*b)+c;
  9.         }
  10.         public static void main(String args[]) {
  11.         asd(10);
  12.         int r = love(1,5,3);
  13.         System.out.print(r);
  14.                
  15.                
  16.         }
  17. }
複製代碼

TOP

  1. public class n {
  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.        
  12. public static void main(String[] args) {
  13. hello(5);
  14. System.out.println(myPlus(1,2,3));
  15. }

  16. }
複製代碼

TOP

返回列表