0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

関数に引数を指定し、main関数内で文字列を指定して出力する

Last updated at Posted at 2024-10-12

例1

public class Main{
    public static void main(Srting[] args) {
        letters(str: "ABC"); // 出力したい文字列1
        letters(str: "DEF"); // 出力したい文字列2
        letters(str: "GHI"); // 出力したい文字列3
        letters(str: "JKL"); // 出力したい文字列4
        letters(str: "MNO"); // 出力したい文字列5
    }

    public static void letters(String str){
        System.out.println(str); // 文字列型ということだけ指定
    }
}

結果

ABC
DEF
GHI
JKL
MNO

例2 複数の型を混ぜて複数の引数を渡すこともできる

public class Main{
    public static void main(Srting[] args) {
        multiple(str: "ABC", num1: 1, num2: 2);  // 出力したい文字列 + num1 + num2
        multiple(str: "DEF", num1: 3, num2: 4);  // 出力したい文字列 + num1 + num2
        multiple(str: "GHI", num1: 5, num2: 6);  // 出力したい文字列 + num1 + num2
        multiple(str: "JKL", num1: 7, num2: 8);  // 出力したい文字列 + num1 + num2
        multiple(str: "MNO", num1: 9, num2: 10); // 出力したい文字列 + num1 + num2
    }

    public static void multiple(String str, int num1, int num2){
        System.out.println(str);  // 文字列型ということだけ指定
        System.out.println(num1); // 整数型ということだけ指定
        System.out.println(num2); // 整数型ということだけ指定
    }
}

結果

ABC
1
2
DEF
3
4
GHI
5
6
JKL
7
8
MNO
9
10

改行を入れたくない場合にはprintlnをprintにする

public static void multiple(String str, int num1, int num2){
    System.out.print(str);    // 改行を入れない
    System.out.print(num1);   // 改行を入れない
    System.out.println(num2); // 改行を入れる
}

結果

ABC12
DEF34
GHI56
JKL78
MNO910
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?