1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | #define _CRT_SECURE_NO_WARNINGS #include <stdio.h> // ÇÔ¼ö¸¦ Á¤ÀÇÇÑ´Ù. int get_integer() { int value; printf("Á¤¼ö¸¦ ÀÔ·ÂÇϽÿÀ : "); scanf("%d", &value); return value; } int main(void) { int x = get_integer(); // ÇÔ¼ö¸¦ È£ÃâÇÑ´Ù. int y = get_integer(); // ÇÔ¼ö¸¦ È£ÃâÇÑ´Ù. int result = x + y; printf("µÎ¼öÀÇ ÇÕ = %d \n", result); return 0; } | cs |