標題:
自訂函式 (一)
[打印本頁]
作者:
tonyh
時間:
2019-1-25 10:06
標題:
自訂函式 (一)
本帖最後由 tonyh 於 2019-7-3 21:13 編輯
自訂函式:
1. void hello(int n)
2. int myPlus(int x,int y,int z)
[attach]5775[/attach]
public class Ch50 {
static void hello(int n)
{
for(int i=0; i<n; i++)
System.out.println("Hello!!!");
}
static int myPlus(int a, int b, int c)
{
return a+b+c;
}
public static void main(String[] args)
{
hello(5);
System.out.println(myPlus(1,2,3));
}
}
複製代碼
作者:
趙一鳴
時間:
2019-1-25 10:20
public class Ch01
{
static void hello()
{
System.out.println("hello");
}
static int myPlus(int a,int b,int c )
{
return a+b+c;
}
public static void main(String[] args)
{
hello();
System.out.println(myPlus(1,2,3));
}
}
複製代碼
作者:
楊于暄
時間:
2019-1-25 10:20
本帖最後由 楊于暄 於 2019-1-25 10:24 編輯
public class Ch29
{
static void hello(int n)
{
for(int i=0; i<n; i++)
System.out.println("Hello!");
}
static int myplus(int a, int b, int c)
{
return a+b+c;
}
public static void main(String[] args)
{
hello(5);
System.out.println(myplus(1,2,3));
}
}
複製代碼
作者:
孫焌仁
時間:
2019-1-25 10:21
public class Ch10
{
static void hello(int n)
{
for(int i=0;i<n;i++)
System.out.println("Hello!!!");
}
static int myPlus(int a,int b,int c)
{
return a+b+c;
}
public static void main(String args[])
{
hello(2);
System.out.println(myPlus(468,855,534));
}
}
複製代碼
作者:
林育鋐
時間:
2019-1-25 10:23
public class Ch13 {
static void Hello(int n)
{
for(int i=1;i<n;i++)
{
System.out.println("Hello");
}
}
static int myPLUS(int a,int b,int c){
return a+b+c;
}
public static void main(String[] args) {
Hello(77);
System.out.println(myPLUS(489,555555,63666));
}
}
複製代碼
作者:
楊貳鈞
時間:
2019-1-25 10:26
public class Ch02
{
static void hello(int n)
{
for (int i=0;i<n;i++)
System.out.println("Hello!!!");
}
static int myPlus(int a,int b,int c)
{
return a+b+c;
}
public static void main(String[] args)
{
hello(5);
System.out.println(myPlus(1,2,3));
}
}
複製代碼
作者:
王騰立
時間:
2019-1-25 10:32
public class Ch{
static void hello (int n)
{
for(int i=0;i<n;i++);
System.out.println("Heiio!!");
}
static int myPlus(int a,int b, int c)
{
return a+b+c;
}
public static void main(String[]args)
{
hello(5);
System.out.println(myPlus(1,2,3));
}
}
複製代碼
作者:
may
時間:
2019-1-25 10:52
public class Ch50 {
static void hello(int n){
for(int i=0; i<n; i++)
{
System.out.println("hello");
}
}
static int myPlus(int a,int b, int c){
return a+b+c;
}
public static void main(String[] args){
hello(5);
System.out.println(myPlus(1,3,5));
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2