URL : https://codeup.kr/problemsetsol.php?psid=23
// 참 거짓 바꾸기
#include <iostream>
using namespace std;
int main()
{
int n;
cin >> n;
cout << (1 - n);
return 0;
}
URL : https://codeup.kr/problemsetsol.php?psid=23
// 두 정수 입력받아 비교4
// a와 b가 서로 다르면 1
// 같으면 0
#include <iostream>
using namespace std;
int main()
{
int n1, n2;
cin >> n1 >> n2;
cout << (n1 != n2);
return 0;
}
URL : https://codeup.kr/problemsetsol.php?psid=23
// 두 정수 입력받아 비교3
// b가 a보다 크거나 같으면 1
// 그렇지 않은 경우 0
#include <iostream>
using namespace std;
int main()
{
int n1, n2;
cin >> n1 >> n2;
cout << (n1 <= n2);
return 0;
}
URL : https://codeup.kr/problemsetsol.php?psid=23
// 두 정수 입력받아 비교2
// a와 b가 같으면 1
// 그렇지 않은 경우 0
#include <iostream>
using namespace std;
int main()
{
int n1, n2;
cin >> n1 >> n2;
cout << (n1 == n2);
return 0;
}
URL : https://codeup.kr/problemsetsol.php?psid=23
// 두 정수 입력받아 비교
// a가 b보다 크면 1
// 그렇지 않은 경우 0
#include <iostream>
using namespace std;
int main()
{
int n1, n2;
cin >> n1 >> n2;
cout << (n1 > n2);
return 0;
}
URL : https://codeup.kr/problemsetsol.php?psid=23
// 정수 2개 입력받아 a x 2^b승 출력
// input : 1 3
// output : 8
#include <iostream>
using namespace std;
int main()
{
int n1, n2;
cin >> n1 >> n2;
cout << (n1 * pow(2, n2));
return 0;
}