======== 値の交換 ======== .. code-block:: c void swap(int *x, int *y) { int temp; temp = *x; *x = *y; *y = temp; }