標題:
自訂函式 (一)
[打印本頁]
作者:
tonyh
時間:
2021-1-27 09:56
標題:
自訂函式 (一)
自訂函式:
1. void hello(int n)
2. int myPlus(int x,int y,int z)
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));
}
}
複製代碼
作者:
吳聲寬
時間:
2021-1-27 10:21
public class Ch10
{
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(5);
System.out.println(myPlus(1, 2, 3));
}
}
複製代碼
作者:
楊澤全
時間:
2021-1-27 10:21
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));
}
}
複製代碼
作者:
李柏穎
時間:
2021-1-27 10:21
import java.util.Scanner;
public class Ch01
{
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(5);
System.out.println(myplus(1,2,3));
}
}
複製代碼
作者:
劉凱閔
時間:
2021-1-27 10:22
public class Ch01 {
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));
}
}
複製代碼
作者:
王博裕
時間:
2021-1-27 10:22
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));
}
}
複製代碼
作者:
卓炘暘
時間:
2021-1-27 10:23
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));
}
複製代碼
作者:
楊小萱
時間:
2021-1-27 10:24
public class Ch05
{
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));
}
}
複製代碼
作者:
藍健洲
時間:
2021-1-27 10:24
public class Ch01 {
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));
}
}
複製代碼
作者:
紀承典
時間:
2021-1-27 10:24
public class Ch01{
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));
}
}
複製代碼
作者:
王睿宇
時間:
2021-1-27 10:26
public class AS02 {
static void opt(int x){
for(int i=x; i>0; i--)
System.out.print("Output ");
}
static float ave(int a, int b, int c){
return (a+b+c)/3;
}
public static void main(String[] args) {
opt(6);
System.out.println(ave(9, 8, 6));
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2