chapter 7 홍정모 교수님 따라배우는 C


chapter 7 홍정모 교수님  따라배우는 C

#본문의 저작권은 인프런과 홍정모 교수님께 있습니다.#본문의 목적은 강의 복습 및 단순 참고용 입니다.// 7.1 Branching statement 분기문 if int main(){int number;printf("Input a positive integer : ");scanf("%d", &number);if (number % 2 == 0)printf("Even");if (number % 2 != 0)printf("Odd");//TODO: printf even or odd}if (int i % 2 == 0){printf("Even");}// if elseint main() {int number;printf("Input a positive integer : ");scanf("%d", &number);if (number % 2 == 0)p..........



원문링크 : chapter 7 홍정모 교수님 따라배우는 C