mirror of
https://github.com/autc04/Retro68.git
synced 2025-01-13 16:33:02 +00:00
16 lines
226 B
Java
16 lines
226 B
Java
public class PR6820
|
|
{
|
|
static void m(int a, int b) {
|
|
System.out.println("a="+a+" b="+b);
|
|
}
|
|
|
|
static int a = 10;
|
|
|
|
public static void main(String[] args) {
|
|
int b = 10;
|
|
m(a,++a);
|
|
m(b,++b);
|
|
}
|
|
}
|
|
|