728x90
#include <iostream>
using namespace std;
int mul(int a, int b){
return a*b;
}
int main(void){
int n1, n2, n3, n4;
cin >> n1 >> n2>> n3 >> n4;
cout << mul(mul(n1, n2), mul(n3, n4));
return 0;
}
#include <iostream>
using namespace std;
int main(void) {
int a, b;
cin >> a >> b;
int rst1 = a>>b;
int rst2 = a<<b;
cout<<rst1<<endl<<rst2;
return 0;
}
#include <iostream>
using namespace std;
int main() {
int n;
cin >> n;
int i = 1;
while(i<=n){
cout<<"Hello Goorm !"<<endl;
i++;
}
return 0;
}
728x90
'Algorithm > goorm' 카테고리의 다른 글
goorm 비트연산 기본 1, 몫과 나머지, 윤년 (Leap Year) (0) | 2020.08.17 |
---|---|
goorm 약수의 합, 모양찍기, 소수 판별 (2) | 2020.08.15 |
goorm Min 함수, 3의 배수 게임, 리그 횟수 경기 구하기 (0) | 2020.08.14 |
goorm 약수 구하기, 최소값, 369 게임 (0) | 2020.08.12 |
goorm 3과 5의 배수, 시험성적 평균과 등급 구하기, 홀짝 판별 (0) | 2020.08.12 |