반응형
#include <iostream>
using namespace std;
void swap(int &a, int &b){
int temp;
temp = a;
a = b;
b = temp;
}
int main(){
int i = 10;
int j = 20;
cout << i << " " << j << endl;
swap(i,j);
cout << i << " " << j << endl;
}
반응형
'C++' 카테고리의 다른 글
c++ 다중상속 계산기 (0) | 2023.01.10 |
---|---|
c++ 구조체 사용 (0) | 2023.01.10 |
c++ if문 짝수 홀수 (0) | 2023.01.07 |
c++ 카페 관리 프로그램 (0) | 2023.01.07 |
c++ Date 실습(수업 중 실습) (0) | 2023.01.07 |