차이
문서의 선택한 두 판 사이의 차이를 보여줍니다.
양쪽 이전 판 이전 판 다음 판 | 이전 판 | ||
activity:public:2021:cpp:210325 [2021/03/23 18:51:33] – [1. 관계 연산자] chanp617 | activity:public:2021:cpp:210325 [2021/05/20 21:45:12] (현재) – 시간/장소/참가자 틀 서식 통일 david | ||
---|---|---|---|
줄 1: | 줄 1: | ||
======C++ 스터디 #2: 연산자, 조건, 반복====== | ======C++ 스터디 #2: 연산자, 조건, 반복====== | ||
- | 2021년 3월 25일 목요일 | + | |
- | Google Meet | + | | 시간 | 2021년 3월 25일 목요일 |
+ | | 장소 | Google Meet | | ||
+ | | 참가자 | - | | ||
+ | |||
+ | {{youtube> | ||
+ | \\ | ||
출처: https:// | 출처: https:// | ||
줄 31: | 줄 36: | ||
=====2. 논리 연산자===== | =====2. 논리 연산자===== | ||
- | 논리 연산자는 조건식이나 값을 논리적으로 판단합니다. | + | 논리 연산자는 조건식이나 값을 논리적으로 판단합니다. 논릿값 거짓(false)은 0, 참(true)은 0이 아닌 값이며 보통 1을 사용합니다. |
줄 297: | 줄 302: | ||
====8.1. 예제(1): 입력된 숫자가 짝수인지 홀수인지 판별해주는 프로그램==== | ====8.1. 예제(1): 입력된 숫자가 짝수인지 홀수인지 판별해주는 프로그램==== | ||
+ | <sxh cpp> | ||
+ | #include < | ||
+ | using namespace std; | ||
+ | |||
+ | int main() | ||
+ | { | ||
+ | int number; | ||
+ | cout << "Enter an integer: "; | ||
+ | cin >> number; | ||
+ | |||
+ | if (number % 2 == 0) | ||
+ | { | ||
+ | cout << number << " is even" << endl; | ||
+ | } | ||
+ | else | ||
+ | cout << number << " is odd" << endl; | ||
+ | |||
+ | return 0; | ||
+ | } | ||
+ | </ | ||
====8.2. 예제(2): 점수를 입력하면 등급을 알려주는 프로그램==== | ====8.2. 예제(2): 점수를 입력하면 등급을 알려주는 프로그램==== | ||
+ | <sxh cpp> | ||
+ | #include < | ||
+ | using namespace std; | ||
+ | |||
+ | int main() | ||
+ | { | ||
+ | int score; | ||
+ | cout << "Enter your score: "; | ||
+ | cin >> score; | ||
+ | |||
+ | if (score>= 90) | ||
+ | cout << " | ||
+ | else if (score >= 80) | ||
+ | cout << " | ||
+ | else if (score >= 70) | ||
+ | cout << " | ||
+ | else if (score >= 60) | ||
+ | cout << " | ||
+ | else | ||
+ | cout << " | ||
+ | | ||
+ | return 0; | ||
+ | } | ||
+ | </ | ||
====8.3. 예제(3): 점의 좌표를 입력하면 점이 몇 사분면에 있는지 판별해주는 프로그램==== | ====8.3. 예제(3): 점의 좌표를 입력하면 점이 몇 사분면에 있는지 판별해주는 프로그램==== | ||
+ | <sxh cpp> | ||
+ | #include < | ||
+ | using namespace std; | ||
+ | |||
+ | int main() | ||
+ | { | ||
+ | double x, y; | ||
+ | int quadrant; | ||
+ | cout << "Enter the x-coordinate value: "; | ||
+ | cin >> x; | ||
+ | cout << "Enter the y-coordinate value: "; | ||
+ | cin >> y; | ||
+ | |||
+ | if ((x > 0) && (y > 0)) | ||
+ | quadrant = 1; | ||
+ | |||
+ | else if ((x < 0) && (y > 0)) | ||
+ | quadrant = 2; | ||
+ | |||
+ | else if ((x < 0) && (y < 0)) | ||
+ | quadrant = 3; | ||
+ | else | ||
+ | quadrant = 4; | ||
+ | |||
+ | cout << " | ||
+ | |||
+ | return 0; | ||
+ | } | ||
+ | </ | ||
====8.4. 예제(4): 5부터 500까지 차례대로 5의 배수만 출력하는 프로그램==== | ====8.4. 예제(4): 5부터 500까지 차례대로 5의 배수만 출력하는 프로그램==== | ||
+ | ===8.4.1 for문=== | ||
+ | <sxh cpp> | ||
+ | #include < | ||
+ | using namespace std; | ||
+ | |||
+ | int main() | ||
+ | { | ||
+ | for (int i = 1; i <= 100; i++) | ||
+ | { | ||
+ | cout << 5 * i << endl; | ||
+ | } | ||
+ | |||
+ | return 0; | ||
+ | } | ||
+ | </ | ||
+ | ===8.4.2 continue 사용하기=== | ||
+ | <sxh cpp> | ||
+ | #include < | ||
+ | using namespace std; | ||
+ | |||
+ | int main() | ||
+ | { | ||
+ | for (int i = 1; i <= 500; i++) | ||
+ | { | ||
+ | if (i % 5 != 0) | ||
+ | continue; | ||
+ | |||
+ | cout << i << endl; | ||
+ | } | ||
+ | |||
+ | return 0; | ||
+ | } | ||
+ | </ | ||