標題:
自訂函式 (一)
[打印本頁]
作者:
tonyh
時間:
2019-7-5 10:06
標題:
自訂函式 (一)
自訂函式:
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));
}
}
複製代碼
作者:
賴駿榮
時間:
2019-7-5 10:16
package 自訂函式;
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));
}
}
複製代碼
作者:
王煦
時間:
2019-7-5 10:43
public class Ch01 {
public static 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-7-5 10:45
public class Ch18 {
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));
}
}
複製代碼
作者:
古蕾娜
時間:
2019-7-5 10:46
public class Ch06
{
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-7-5 10:46
public class Ch03 {
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-7-5 10:46
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(87);
System.out.println(myPlus(5,8,7));
}
}
複製代碼
作者:
林宥杰
時間:
2019-7-5 10:46
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));
}
}
複製代碼
作者:
陳柏銓
時間:
2019-7-5 10:47
public class Ch222 {
static void hello(int x)
{
for(int i=0; i<x; i++)
System.out.println("H E L L O ! !");
}
static int uniPlus(int a, int b, int c)
{
return a*3+b*2+c;
}
public static void main(String[] args) {
hello(5);
System.out.println(uniPlus(1,2,3));
}
}
複製代碼
作者:
張啟廣
時間:
2019-7-5 10:48
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));
}
}
複製代碼
作者:
李佳諭
時間:
2019-7-5 10:48
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-7-5 10:48
public class Ch15 {
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-7-5 10:49
public class Ch87 {
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-7-5 10:49
package o;
import java.util.Scanner;
import java.util.*;
public class foraddfinal
{
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-7-5 10:50
public class Ch12 {
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-7-5 10:50
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));
}
}
複製代碼
作者:
葉子于
時間:
2019-7-5 10:50
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-7-5 10:50
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));
}
}
複製代碼
作者:
蔡杰希
時間:
2019-7-5 10:58
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));
}
}
複製代碼
作者:
謝宗佑
時間:
2019-7-5 11:02
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));
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2