URL : https://codeup.kr/problemsetsol.php?psid=23
// 정수 1개 입력받아 그 수까지 출력하기
// input : 4
// output : 0
// 1
// 2
// 3
// 4
#include <iostream>
using namespace std;
int main()
{
int n;
cin >> n;
for (int i = 0; i <= n; i++)
cout << (char)i << endl;
return 0;
}
URL : https://codeup.kr/problemsetsol.php?psid=23
// 문자 1개 입력받아 알파벳 출력하기
// input : f
// output : a b c d e f
#include <iostream>
using namespace std;
int main()
{
char c;
cin >> c;
for (int i = 'a'; i <= c; i++)
cout << (char)i << endl;
return 0;
}
URL : https://codeup.kr/problemsetsol.php?psid=23
// 정수 1개 입력받아 카운트다운 출력하기2
// input : 5
// output : 4
// 3
// 2
// 1
// 0
#include <iostream>
using namespace std;
int main()
{
int n;
cin >> n;
for (int i = (n - 1); i >= 0; i--)
cout << i << endl;
return 0;
}
URL : https://codeup.kr/problemsetsol.php?psid=23
// 정수 1개 입력받아 카운트다운 출력하기
// input : 5
// output : 5
// 4
// 3
// 2
// 1
#include <iostream>
using namespace std;
int main()
{
int n;
cin >> n;
for (int i = n; i > 0; i--)
cout << i << endl;
return 0;
}
URL : https://codeup.kr/problemsetsol.php?psid=23
// 0 입력될 때까지 무한 출력하기2
// input : 7 4 0 3 0 1 5 6 9 10 8
// output : 7
// 4
// 0
#include <iostream>
using namespace std;
int main()
{
int n;
do {
cin >> n;
cout << n << endl;
} while (n);
return 0;
}
URL : https://codeup.kr/problemsetsol.php?psid=23
// 정수 입력받아 계속 출력하기
// input : 5
// 1 2 3 4 5
// output : 1
// 2
// 3
// 4
// 5
#include <iostream>
using namespace std;
int main()
{
int n, k;
cin >> n;
for (int i = 0; i < n; i++)
{
cin >> k;
cout << k << endl;
}
return 0;
}