学习面向对象编程
面向对象编程的重点就是把获取数据变为获取数据所在的地址 之后再获取地址里的数据
#include <stdio.h>
void Swap(int *x, int *y) {
int temp = *x;
*x = *y;
*y = temp;
}
int main() {
int num1, num2;
scanf("%d %d", &num1, &num2);
Swap(&num1, &num2);
printf("%d %d\n", num1, num2);
return 0;}