teddy8 Full Stack Software Engineer

CodeUp - 기초100제(1059)

2019-06-19
teddy8

문제

URL : https://codeup.kr/problemsetsol.php?psid=23


소스코드

// 비트단위로 바꿔 출력
// input : 2
// output : -3
// 설명 : 2(10)에서 1->0 0->1로 바꾼 후 그 값을 10진수로 출력
#include <iostream>

using namespace std;

int main()
{
	int n;
	cin >> n;
	cout << (~n);
	return 0;
}


Comments

Content