문제
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
// 정수 입력 받아 부호 바꿔 출력
// input : -1
// output : 1
#include <iostream>
using namespace std;
int main()
{
int n;
cin >> n;
cout << (n * -1);
return 0;
}