2018-11-19 02:03:15
¨Û Ãßõ
¨á ´ÜÃàURL
|
|
|
| https://humoruniv.com/program6679 URL º¹»ç |
½º¿Ò°ªÀ» ¹ÝȯÇ϶ó´Âµ¥ ¹» Ãß°¡Çؾߵɱî¿ä..
#include
struct point {
int x;
int y;
};
struct point swap£¨struct point q£©; // swap ÇÁ·ÎÅäŸÀÔ
struct point p = { 10, 20 }; // swap£¨£© °á°ú p = {20, 10}
struct point swap£¨struct point q£©
{
int temp = p.x;
p.x = p.y;
p.y = temp;
};