문제
URL : https://codeup.kr/problemsetsol.php?psid=23
소스코드
// 문자 입력 받아 다음 문자 출력
// input : a
// output : b
#include <iostream>
using namespace std;
int main()
{
char c;
cin >> c;
cout << (char)(c + 1);
return 0;
}
URL : https://codeup.kr/problemsetsol.php?psid=23
// 문자 입력 받아 다음 문자 출력
// input : a
// output : b
#include <iostream>
using namespace std;
int main()
{
char c;
cin >> c;
cout << (char)(c + 1);
return 0;
}