URL : https://codeup.kr/problemsetsol.php?psid=23
// 정수 입력받아 2 곱해 출력
// input : 1024
// output : 2048
#include <iostream>
using namespace std;
int main()
{
int n;
cin >> n;
cout << (n << 1);
return 0;
}
URL : https://codeup.kr/problemsetsol.php?psid=23
// 정수 3개 입력받아 합과 평균 출력하기
#include <iostream>
using namespace std;
int main()
{
int n1, n2, n3;
cin >> n1 >> n2 >> n3;
cout << "합 : " << (n1 + n2 + n3) << endl;
cout << "평균 : " << ((n1 + n2 + n3) / 3);
return 0;
}
URL : https://codeup.kr/problemsetsol.php?psid=23
// 정수 두 개 입력받아 각종 계산하기 (+, -, *, /, %, /(double))
#include <iostream>
using namespace std;
int main()
{
int n1, n2;
cin >> n1 >> n2;
cout << (n1 + n2) << endl;
cout << (n1 - n2) << endl;
cout << (n1 * n2) << endl;
cout << (n1 / n2) << endl;
cout << (n1 % n2) << endl;
cout.precision(11);
cout << (double)n1 / (double)n2 << endl;
return 0;
}
URL : https://codeup.kr/problemsetsol.php?psid=23
// 정수 두 개 입력받아 1 더해 출력
// input : 2147483647
// output : 2147483648
#include <iostream>
using namespace std;
int main()
{
int n;
cin >> n;
cout << (unsigned _int32)(n + 1);
return 0;
}
URL : https://codeup.kr/problemsetsol.php?psid=23
// 정수 2개 입력 받아 나눈 나머지 출력
// input : 3 7
// output : 3
#include <iostream>
#include <math.h>
using namespace std;
int main()
{
unsigned short n1, n2;
cin >> n1 >> n2;
cout << fmod(n1, n2);
return 0;
}
URL : https://codeup.kr/problemsetsol.php?psid=23
// 정수 2개 입력 받아 나눈 몫 출력
// input : 1 3
// output : 0
#include <iostream>
using namespace std;
int main()
{
int n1, n2;
cin >> n1 >> n2;
cout << (n1 / n2);
return 0;
}