Board logo

標題: 自訂函式 (一) [打印本頁]

作者: tonyh    時間: 2019-8-7 10:10     標題: 自訂函式 (一)

自訂函式:
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. }
複製代碼

作者: 張嘉栩    時間: 2019-8-7 10:27

  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(69,69,69));
  17.         }
  18. }
複製代碼

作者: 張郁庭    時間: 2019-8-7 10:27

  1. public class Ch04 {

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

  17. }
複製代碼

作者: 黃永恩    時間: 2019-8-7 10:28

  1. public class ch02 {
  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(2,3,10));
  12.         }
  13. }
複製代碼

作者: 張書涵    時間: 2019-8-7 10:28

  1. public class Ch01 {

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

作者: 葉俠愷    時間: 2019-8-7 10:28

  1. import java.util.Scanner;


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

  15.         public static void main(String[] args) {
  16.                 hello(4);
  17.                 System.out.println(s(3,7,3));
  18.       

  19.         }

  20. }
複製代碼

作者: 蔡明蓉    時間: 2019-8-7 10:29

  1. public class Ch51 {
  2.         static void helloHello(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.                 helloHello(5);
  11.                 System.out.println(myPlus(1, 8, 4));
  12.         }
  13. }
複製代碼

作者: 曾暘竣    時間: 2019-8-7 10:29

  1. public class Ch10 {

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

作者: 許育慈    時間: 2019-8-7 10:29

  1. public class Ch01{
  2.         static void hello(int n){
  3.                 for(int i=1;i<=n;i++)
  4.             System.out.println("Hello~");       
  5.         }
  6.         static int plusAll(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(plusAll(2,3,4));
  12.         
  13.     }
  14. }
複製代碼

作者: 余奕廷    時間: 2019-8-7 10:29

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

作者: 余映均    時間: 2019-8-7 10:29

  1. public class Ch02 {

  2.         static void sayHello(int n)
  3.         {
  4.                 for(int i=1;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.             sayHello(5);
  15.                 System.out.println(myPlus(1,2,3));
  16.         }
  17. }
複製代碼

作者: 潘憶承    時間: 2019-8-7 10:30

  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(8,7,8));                     
  17.            }
  18. }
複製代碼

作者: 許育禎    時間: 2019-8-7 10:30

  1. public class CH01 {
  2.     static void hey(int n)
  3.     {
  4.             for(int i=0;i<n;i++)
  5.                     System.out.println("Hey!");
  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.                  hey(5);
  14.          System.out.println(myPlus(1,2,3));
  15.         }

  16. }
複製代碼

作者: 鄭宇崴    時間: 2019-8-7 10:30

  1. public class Ch50
  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 myPlas(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(myPlas(1,2,3));
  16.         }
  17. }       
複製代碼

作者: 李沛儒    時間: 2019-8-7 10:31

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

作者: 莊鈞程    時間: 2019-8-7 10:32

  1. import java.util.Scanner;
  2. import java.util.Arrays;
  3. public class Ch50 {
  4.         static void hello(int n){
  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.                 return a+b+c;
  10.         }
  11.     public static void main(String args[]){
  12.         hello(15);
  13.         System.out.println(myPlus(1,87,5));
  14.     }
  15. }
複製代碼

作者: 何育翔    時間: 2019-8-7 10:35

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

作者: 黃芊嬡    時間: 2019-8-7 10:35

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





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/) Powered by Discuz! 7.2