문제 출처 :
https://www.acmicpc.net/problem/2739
2739번: 구구단
N을 입력받은 뒤, 구구단 N단을 출력하는 프로그램을 작성하시오. 출력 형식에 맞춰서 출력하면 된다.
www.acmicpc.net

#include <iostream>
#define range(x) (1 <= x && x <= 9)
using namespace std;
int main(){
int N;
cin >> N;
if(range(N)){
for(int i = 1 ; i<=9 ; i++){
cout << N << " * " << i << " = " << i * N << endl ;
}
}
return 0 ;
}

https://github.com/gurcks8989/BackJoon/blob/master/Step/03.for%EB%AC%B8/P01_2739.cpp
gurcks8989/BackJoon
BackJoon_study_with_c++. Contribute to gurcks8989/BackJoon development by creating an account on GitHub.
github.com
문제 출처 :
https://www.acmicpc.net/problem/2739
2739번: 구구단
N을 입력받은 뒤, 구구단 N단을 출력하는 프로그램을 작성하시오. 출력 형식에 맞춰서 출력하면 된다.
www.acmicpc.net

#include <iostream>
#define range(x) (1 <= x && x <= 9)
using namespace std;
int main(){
int N;
cin >> N;
if(range(N)){
for(int i = 1 ; i<=9 ; i++){
cout << N << " * " << i << " = " << i * N << endl ;
}
}
return 0 ;
}

https://github.com/gurcks8989/BackJoon/blob/master/Step/03.for%EB%AC%B8/P01_2739.cpp
gurcks8989/BackJoon
BackJoon_study_with_c++. Contribute to gurcks8989/BackJoon development by creating an account on GitHub.
github.com