728x90
#include <iostream>
#include <string>
using namespace std;
int main(void) {
string str;
getline(cin, str);
for (int i = 0; i < str.length(); ++i){
if (str[i] != ' ')
cout << str[i];
}
return 0;
}
#include <iostream>
#include <iomanip>
using namespace std;
int main(void) {
int n1, n2 = 0;
char c = ' ';
cin >> n1 >> c >> n2;
switch(c){
case '+':
cout<<n1+n2;
break;
case '-':
cout<<n1-n2;
break;
case '*':
cout<<n1*n2;
break;
case '/':
cout<<fixed<<setprecision(2);
cout<<(double(n1)/double(n2));
break;
return 0;
}
}
#include <iostream>
#include <iomanip>
using namespace std;
int main() {
int a, b;
cin >> a >> b; // 밑변, 높이
cout<<fixed<<setprecision(2);
cout.precision(1);
cout << a*b/2.0;
return 0;
}
728x90
'Algorithm > goorm' 카테고리의 다른 글
goorm 헷갈리는 작대기, 피라미드, ASCII 코드 (0) | 2020.08.22 |
---|---|
goorm 절대값, 특정 문자 개수 구하기, 16 진수 (0) | 2020.08.19 |
goorm 비트연산 기본 1, 몫과 나머지, 윤년 (Leap Year) (0) | 2020.08.17 |
goorm 약수의 합, 모양찍기, 소수 판별 (2) | 2020.08.15 |
goorm 네 수의 곱, 비트연산 기본 2, Hello Goorm ! (0) | 2020.08.15 |