Skip to content

Instantly share code, notes, and snippets.

@shozo1030
Last active June 22, 2021 12:41
public class Practice {
public static void main(String[] args) {
int num = 10;
calA(num);
System.out.println(num); // 10が出力されます
}
public static void calA(int num) {
num += 10;
System.out.println(num); // 20が出力されます
}
/*実行結果
20
10
*/
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment