[HackerRank] C > Conditionals and Loops > For Loop in C
처음에 문제를 잘못 이해했었는데,, 생각보다 간단한 문제였다. 먼저 9이하인 자연수는 영어로 숫자를 출력하고, 9를 넘어가는 수부터는 짝수/홀수를 출력해주면 된다. 예를 들어서 입력으로 5 12 가 들어오면 five, six, seven, eight, nine, even, odd, even을 줄을 바꿔서 출력해주면 된다. 코드 int main() { int a, b, i; scanf("%d\n%d", &a, &b); // Complete the code. char en[9][10] = {"one", "two", "three", "four", "five", "six", "seven", "eight", "nine"}; for(i=a; i