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 : -1
// output : 1
#include <iostream>
using namespace std;
int main()
{
int n;
cin >> n;
cout << (n * -1);
return 0;
}
URL : https://codeup.kr/problemsetsol.php?psid=23
// 정수 2개 입력 받아 합 출력2
// input : 2147483647 2147483647
// output : 4294967294
#include <iostream>
using namespace std;
int main()
{
unsigned _int32 n1, n2;
cin >> n1 >> n2;
cout << (n1 + n2);
return 0;
}
URL : https://codeup.kr/problemsetsol.php?psid=23
// 정수 2개 입력 받아 합 출력
// input : 123 -123
// output : 0
#include <iostream>
using namespace std;
int main()
{
short n1, n2;
cin >> n1 >> n2;
cout << (n1 + n2);
return 0;
}
URL : https://codeup.kr/problemsetsol.php?psid=23
// 정수 입력 받아 아스키코드 출력
// input : 65
// output : A
#include <iostream>
using namespace std;
int main()
{
int n;
cin >> n;
cout << (char)n;
return 0;
}
URL : https://codeup.kr/problemsetsol.php?psid=23
// 영문자를 입력 받아 아스키코드값 출력
// input : A
// output : 65
#include <iostream>
using namespace std;
int main()
{
char c;
cin >> c;
cout << (int)c;
return 0;
}