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