2022. 5. 30. 20:44ㆍ코딩 1막 <C++개념편>
// 조건문
// if(조건)
// {
// 조건이 만족되었을 때 수행
// }
// if나 else if나 else는 분기이기때문에 참인 선택지를 고르는 것과 같다
// else if는 여러개여도 상관없다.
// 코딩은 위에서 아래로 순서대로 읽힌다.
#include <iostream>
using namespace std;
void main()
{
int score = 70;
if (score > 90)
{
cout << "A" << endl;
}
else if (score > 70)
{
cout << "B" << endl;
}
else if (score > 50)
{
cout << "C" << endl;
}
// if문에서 조건이 만족하지않을 경우를 출력하고 싶을때 else를 쓴다
else
{
cout << "D" << endl;
}
}
#include <iostream>
using namespace std;
void main()
{
int value = -5;
if (value > 0)
{
cout << "양수" << endl;
}
else if (value == 0)
{
cout << "0" << endl;
}
else
{
cout << "음수" << endl;
}
cout << endl << endl;
int valueB = 1;
if (valueB % 2 == 0)
{
cout << "짝수" << endl;
}
else
{
cout << "홀수" << endl;
}
}
'코딩 1막 <C++개념편>' 카테고리의 다른 글
[C++] 06. 반복문(for문) (0) | 2022.05.30 |
---|---|
[C++] 05. 반복문(while문) (0) | 2022.05.30 |
[C++] 04. 연산자, 조건비교 연산자, 연산자 우선순위 (0) | 2022.05.30 |
[C++] 02. 변수 (0) | 2022.05.30 |
[C++] 01. Hello World 출력 (0) | 2022.05.30 |