-
530 : 선택제어문 -자가진단3c/기초 2019. 1. 8. 10:19
My Solution
12345678910111213#include<stdio.h>int main(void){int age;printf("나이를 입력하시오 : ");scanf("%d", &age);if(age>=20){printf("adult");}else{printf("%d years later",20-age);}return 0;}cs 반응형'c > 기초' 카테고리의 다른 글
532 : 선택제어문-자가진단5 (0) 2019.01.08 531 : 선택제어문-자가진단4 (0) 2019.01.08 529 : 선택제어문-자가진단2 (0) 2019.01.08 528 : 선택제어문-자가진단1 (0) 2019.01.08 119 : 디버깅-형성평가4 (0) 2019.01.08