main 함수 내에는 숫자를 사용하지 말고 1, 2, 3 세 개의 숫자를 조합하여 가능한 한 모든 합을 출력하는 프로그램을 작성하시오. 출력예와 같이 출력하시오.
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#define one 1
#define two 2
#define three 3
int main(void)
{
int i;
int j;
for(i=one;i<three+one;i++)
for(j=one;j<three+one;j++)
printf("%d + %d = %d\n",i,j,i+j);
system("pause");
return 0;
}