標題:
自訂函式 (一)
[打印本頁]
作者:
tonyh
時間:
2020-2-5 09:58
標題:
自訂函式 (一)
自訂函式:
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));
}
}
複製代碼
作者:
張宸翔
時間:
2020-2-5 10:14
public class Ch01 {
static void sayHello(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) {
sayHello(7);
System.out.println(myPlus(7, 4, 6));
}
}
複製代碼
作者:
蔡承翰
時間:
2020-2-5 10:14
public class Ch01 {
static void sayHello(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) {
sayHello(5);
System.out.println(myPlus(1,2,3));
}
}
複製代碼
作者:
蘇宜貞
時間:
2020-2-5 10:15
public class Ch01
{
static void sayHello(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)
{
sayHello(3);
System.out.println(myPlus(1, 2, 3));
}
}
複製代碼
作者:
邱翊博
時間:
2020-2-5 10:15
package bobo;
public class bobo {
static void sayHello(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)
{
sayHello(5);
System.out.println(myPlus(1,2,3));
}
}
複製代碼
作者:
沙芃妘
時間:
2020-2-5 10:15
package ggg;
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));
}
}
複製代碼
作者:
黃煜城
時間:
2020-2-5 10:15
public class Ch25 {
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));
}
}
複製代碼
作者:
何蕙妘
時間:
2020-2-5 10:16
public class Ch55 {
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,6,3));
}
}
複製代碼
作者:
陳梓瑜
時間:
2020-2-5 10:16
public class C41 {
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));
}
}
複製代碼
作者:
蘇行一
時間:
2020-2-5 10:16
public class Ch1
{
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));
}
}
複製代碼
作者:
盧弘毅
時間:
2020-2-5 10:16
public class Ch99 {
static void sayHello(int a)
{
for(int i=0;i<=a;i++)
System.out.println("Hello!!!");
}
static int myPlus(int a,int b,int c)
{
return a+b+c;
}
public static void main(String[] args) {
sayHello(5);
System.out.println(myPlus(1,2,3));
}
}
複製代碼
作者:
楊秉樺
時間:
2020-2-5 10:16
public class Ch41
{
static void sayHello(int n)
{
for (int i=1;i<=n;i++)
System.out.println("Hello!");
}
static int plus(int a,int b,int c)
{
return a+b+c;
}
public static void main(String[] args) {
sayHello(5);
System.out.println(plus(1,2,3));
}
}
複製代碼
作者:
劉家銘
時間:
2020-2-5 10:19
public class Hello {
static void sayHello(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)
{
sayHello(5);
System.out.println(myPlus(1, 2, 3));
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2