일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- 윈도우즈
- array
- c++
- java
- 자료구조
- windows
- request
- 투자
- CSS
- jsp
- Kafka
- API
- HTML
- function
- 포인터
- query
- beans
- algorithm
- System
- CLASS
- 노드
- 악성코드
- UTF-8
- WebProgramming
- C
- Sort
- Call-by-reference
- JavaScript
- meta
- OOP
- Today
- Total
hahahia
ab + ba = 99 를 만족하는 a, b값 구하는 프로그램 본문
/* made by hahahia */
#include <stdio.h>
void main()
{
int i, j;
for(i=0; i<=9; i++) {
for(j=0; j<=9; j++) {
if(i*10 + j + j*10 + i == 99)
{
if(i == 0)
{
printf("%d + %d%d = 99\n", j , j , i);
printf("a = %d, b = %d\n", i , j);
}
else if(j==0)
{
printf("%d + %d%d = 99\n", i , i , j);
printf("a = %d, b = %d\n", i , j);
}
else {
printf("%d%d + %d%d = 99\n", i,j, j,i);
printf("a = %d, b = %d\n", i, j);
}
}
}
}
}
'Language > C' 카테고리의 다른 글
지역 변수와 전역 변수 (0) | 2011.05.22 |
---|---|
C언어 함수 (0) | 2011.05.22 |
break와 continue의 차이 (0) | 2011.05.13 |
컴입 과제 - 반목문(for, while, do while)을 이용한 factorial 출력program (0) | 2011.05.10 |
반복문 3가지의 특징(for, while, do while) (0) | 2011.05.10 |