오늘은 입출력에 대한 문제를 풀어보았어요! 문제가 쉬워서 한번에 4개 업로드 합니다!



#2557번


1
2
3
4
5
6
7
8
9
10
#include<iostream>
 
using namespace std;
 
int main()
{
    std::cout << "Hello World!\n";
 
    return 0;
}
cs



#1000번

1
2
3
4
5
6
7
8
9
10
11
12
#include<iostream>
 
using namespace std;
 
int main()
{
    int A, B;
    cin >> A >> B;
    cout << A + B;
 
    return 0;
}
cs



#2558번


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#include<iostream>
 
using namespace std;
 
int main()
{
    int A, B;
    while (1)
    {
        cin >> A;
        if (A <= 0)
        {
            cout << ("0보다 큰 수를 입력하세요: ");
            rewind(stdin);
        }
        else
            break;
    }
    while (1)
    {
        cin >> B;
        if (B > 10)
        {
            cout << ("10보다 작은 수를 입력하세요: ");
            rewind(stdin);
        }
        else
            break;
    }
 
    cout << A + B;
 
    return 0;
}
cs



#10950번


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#include<iostream>
#include<vector>
 
using namespace std;
 
int main()
{
    int A, B;
    int T = 0;    //테스트 케이스
    vector<int> sum;
    cin >> T;
 
    for (int i = 0; i < T; i++)
    {
        cin >> A >> B;
        sum.push_back(A + B);
    }
 
    for (int i = 0; i < T; i++)
    {
        cout<<sum[i]<<endl;
    }
 
    return 0;
}
cs


10950번 문제는 다른분들 보니까 다양하게 푸셨더라고요! 처음에 배열로 할까 생각하다가, T값에 따라 달라지기 때문에

유동적으로 크기를 조절할 수 있는 백터를 사용해야겠다 생각을 하고 코딩했습니다. 



질문사항 있으시면 댓글남겨주세요 :)


+ Recent posts