標題:
自訂函式 (一)
[打印本頁]
作者:
陳品肇
時間:
2019-7-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));
}
}
複製代碼
作者:
林侑成
時間:
2019-7-5 10:01
package asdf;
public class QWER
{
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:02
package text369;
public class text45 {
static void maroon(int n)
{
for(int i=1;i<=n;i++)
System.out.println("sghs");
}
static int io(int x,int y,int z)
{
return x+y+z;
}
public static void main(String[] args) {
maroon(5);
System.out.print(io(1,2,3));
}
}
複製代碼
作者:
黃恆嘉
時間:
2019-7-5 10:02
public class Ch09 {
public static void main(String args[]) {
hello(6);
System.out.println(myPlus(1, 2, 3));
}
static int myPlus(int a, int b, int c) {
return a + b + c;
}
static void hello(int n) {
for (int i = 0; i < n; i += 1) {
System.out.println("hello!!");
}
}
}
複製代碼
作者:
湯東緯
時間:
2019-7-5 10:03
import java.util.*;
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(10);
System.out.println(myplus(1,2,3));
}
}
複製代碼
作者:
黃安立
時間:
2019-7-5 10:08
public class ch {
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:08
public class Ch11 {
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:08
import java.util.Scanner;
public class junior {
static void asd(int a){
for (int i=1; i <=a;i+=1)
System.out.print("GEM~~");
}
static int love(int a ,int b , int c){
return (a*b)+c;
}
public static void main(String args[]) {
asd(10);
int r = love(1,5,3);
System.out.print(r);
}
}
複製代碼
作者:
呂昀宸
時間:
2019-7-5 10:08
public class n {
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://istak.org.tw/seed/)
Powered by Discuz! 7.2