Programming/자바(java) - Web, Mobile

자바(java)/ 값 치환

esoog Polaris 2023. 7. 13. 14:56
public class VariableExchangeExample {
public static void main(String[] args) {
int x = 3;
int y = 5;
System.out.println("x:" + x + ", y:" + y);
int temp = x;
x = y;
y = temp;
System.out.println("x:" + x + ", y:" + y);
}
}
반응형