차이

문서의 선택한 두 판 사이의 차이를 보여줍니다.

차이 보기로 링크

양쪽 이전 판 이전 판
다음 판
이전 판
activity:public:2021:cpp:210325 [2021/03/23 18:51:40] – [2. 논리 연산자] chanp617activity:public:2021:cpp:210325 [2021/05/20 21:45:12] (현재) – 시간/장소/참가자 틀 서식 통일 david
줄 1: 줄 1:
 ======C++ 스터디 #2: 연산자, 조건, 반복====== ======C++ 스터디 #2: 연산자, 조건, 반복======
-2021년 3월 25일 목요일 8:30\\ + 
-Google Meet+| 시간 | 2021년 3월 25일 목요일 20:30 ~ 22:10 | 
 +| 장소 | Google Meet 
 +| 참가자 | - | 
 + 
 +{{youtube>N2Jf-6541SU?medium}} 
 +\\
  
 출처: https://dojang.io/course/view.php?id=2 (코딩도장) 출처: https://dojang.io/course/view.php?id=2 (코딩도장)
줄 297: 줄 302:
  
 ====8.1. 예제(1): 입력된 숫자가 짝수인지 홀수인지 판별해주는 프로그램==== ====8.1. 예제(1): 입력된 숫자가 짝수인지 홀수인지 판별해주는 프로그램====
 +<sxh cpp>
 +#include <iostream>
 +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;
 +}
 +</sxh>
  
 ====8.2. 예제(2): 점수를 입력하면 등급을 알려주는 프로그램==== ====8.2. 예제(2): 점수를 입력하면 등급을 알려주는 프로그램====
 +<sxh cpp>
 +#include <iostream>
 +using namespace std;
 +
 +int main()
 +{
 +    int score;
 +    cout << "Enter your score: ";
 +    cin >> score;
 +
 +    if (score>= 90)
 +        cout << "Grade: A" << endl;
 +    else if (score >= 80)
 +        cout << "Grade: B" << endl;
 +    else if (score >= 70)
 +        cout << "Grade: C" << endl;
 +    else if (score >= 60)
 +        cout << "Grade: D" << endl;
 +    else
 +        cout << "Grade: F" << endl;
 +    
 +    return 0;
 +}
 +</sxh>
  
 ====8.3. 예제(3): 점의 좌표를 입력하면 점이 몇 사분면에 있는지 판별해주는 프로그램==== ====8.3. 예제(3): 점의 좌표를 입력하면 점이 몇 사분면에 있는지 판별해주는 프로그램====
 +<sxh cpp>
 +#include <iostream>
 +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 << "Quadrant: " << quadrant;
 +
 +    return 0;
 +}
 +</sxh>
  
 ====8.4. 예제(4): 5부터 500까지 차례대로 5의 배수만 출력하는 프로그램==== ====8.4. 예제(4): 5부터 500까지 차례대로 5의 배수만 출력하는 프로그램====
 +===8.4.1 for문===
 +<sxh cpp>
 +#include <iostream>
 +using namespace std;
 +
 +int main()
 +{
 +    for (int i = 1; i <= 100; i++)
 +    {
 +        cout << 5 * i << endl;
 +    }
 +
 +    return 0;
 +}
 +</sxh>
 +===8.4.2 continue 사용하기===
 +<sxh cpp>
 +#include <iostream>
 +using namespace std;
 +
 +int main()
 +{
 +    for (int i = 1; i <= 500; i++)
 +    {
 +        if (i % 5 != 0)
 +            continue;
 +
 +        cout << i << endl;
 +    }
 +
 +    return 0;
 +}
 +</sxh>
  
  • activity/public/2021/cpp/210325.1616493100.txt.gz
  • 마지막으로 수정됨: 4년 전
  • 저자 chanp617