CASE

제어문조건문if, switch ~ case반복문for, while, do ~ while분기문break, continue, goto, return 이중에서 조건문에 종류들에 대해서 알아보자조건문은 크게 if문과 switch~case문으로 나눠진다. if문조건이 참일때만 고려#include int main() { int number = 5; if (number > 3) { printf("number는 3보다 큽니다.\n"); } return 0;} if ~else 문조건을 연속으로 확인#include int main() { int number = 2; if (number > 3) { printf("number는 3보다 큽니다.\n"); } els..
계란소년
'CASE' 태그의 글 목록