๋ฌธ์ :
์์ด๋ก ์์๋ฅผ ํํํ ๋ ๋ค์๊ณผ ๊ฐ์ด ๋ํ๋ธ๋ค.
1st 2nd 3rd 4th 5th 6th ... 10th
11th 12th 13th 14th 15th ... 20th
21st 22nd 23rd 24th 25th ... 30th
31st 32nd 33rd 34th 35th ... 40th
41st 42nd 43rd 44th 45th ... 50th
...
91st 92nd 93rd 94th 95th ... 99th
1~99 ์ค ํ๋๊ฐ ์ซ์๊ฐ ์ ๋ ฅ๋๋ฉด ์์ด ์์ ํํ์ ์ถ๋ ฅํ์์ค.
#include<stdio.h>
void main() {
int a; //์ ์๊ณต๊ฐa ์์ฑ.
printf("์ซ์์
๋ ฅ:");
scanf("%d", &a); //a์ ์ซ์์ ์ฅ.
int n = a % 10; //a๋ฅผ 10์ผ๋ก ๋๋ ๋๋จธ์ง๋ฅผ n์ ์ ์ฅ.
if (a >= 11 && a <= 20) { //์กฐ๊ฑด๋ฌธ: a๊ฐ 11~20 ์ธ๊ฐ?
printf("%dth", a);
}
else if (n == 1 && a != 11) { //์กฐ๊ฑด๋ฌธ: n์ด 1์ด๊ณ a๋ 11์ด ์๋๊ฐ?
printf("%dst", a);
}
else if (n == 2 && a != 12) { //์กฐ๊ฑด๋ฌธ: n์ 2์ด๊ณ a๋ 12๊ฐ ์๋๊ฐ?
printf("%dnd", a);
}
else if (n == 3 && a != 13) { //์กฐ๊ฑด๋ฌธ: n์ 3์ด๊ณ a๋ 13์ด ์๋๊ฐ?
printf("%drd", a);
}
else { // ๊ทธ๋ฐ์ ๋๋จธ์ง ๊ฒฝ์ฐ.
printf("%dth", a);
}
}
':: C_ ๐ฉ > ์์ ' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
[C์ธ์ด ์์ ] - ํฐ ์ ๋น๊ต - (0) | 2021.02.14 |
---|---|
[C์ธ์ด ์์ ] - ์ํ๋ฒณ ๋์๋ฌธ์ ๋ณํ - (2) | 2021.02.14 |
[C์ธ์ด ์์ ] - welcome! - (0) | 2021.02.14 |
[C์ธ์ด] ์์ ํ๊ธฐ -switch- / ๊ณ์ฐ๊ธฐ (0) | 2021.02.14 |
[C์ธ์ด] ์์ ํ๊ธฐ if else / 7์ ๋ฐฐ์ ์ฐพ๊ธฐ (0) | 2021.02.14 |
๋๊ธ