선택문 | if와 else if의 차이점
선택문
if 문 if~else 문
if (a>=0)
cout << "positive";
if (a<0)
cout << "negative";
if 문
if(expression)
{(body)
statement1
}
if (a>=0)
cout << "positive";
if(expression) 다음에 사용하지 마십시오
semi-colon (;)
.{}
qo'yilmaydi. int a,b,c;
cin >> a >> b >> c;
int max = a > b ? a : b;
if (max > c)
cout << max << endl;
condition
bajarillmasa 출력 da hech narsa chiqmaydi. cout
ga ta'sir qiladi. if (team == '10')
cout << "Lions" << endl;
not
if (team = '10')
// result team is 10
If-else 문
if(expression)
{(body)
statement1
}
else
{(body)
statement2
}
if (son%2 == 0)
cout << "even" << endl;
else
cout << "odd" << endl;
if 문에 다른 if 문이 포함되어 있습니다(if-else 문 포함).
if (a>=0)
if (x%2 ==0)
cout << "positive even number" << endl;
else
cout << "positive odd number" << endl;
else-if 문
if (a>='A' && a<='Z')
cout << "Upper-case" << endl;
else if (a>='a' && a<= 'z')
cout << "Lower-case" << endl;
else if (a>='0' && a<='9')
cout << "Number" << endl;
else
cout << "Others" << endl;
Reference
이 문제에 관하여(선택문 | if와 else if의 차이점), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/mohira21/selection-statements-difference-between-if-else-and-else-if-4icd텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)