시나브로

1341. 구구단 2 본문

알고리즘/정올

1341. 구구단 2

혬혬 2020. 12. 10. 16:30
728x90
#include <iostream>
#include <vector>
#include <algorithm>
#include <string>
#include <queue>
using namespace std;
int main() {

	int a, b;
	cin >> a >> b;
	if (a > b)
		b--;
	else
		b++;
	for (int i = a; i != b;) {

		for (int j = 1; j < 10; j++) {
			cout << i << " * " << j << " = ";
			if (i * j < 10)
				cout << " " << i * j << "   ";
			else
				cout << i * j << "   ";
			if (j % 3 == 0)
				cout << endl;
		}
		cout << endl;
		if (i < b)
			i++;
		else
			i--;
	}


	return 0;
}

www.jungol.co.kr/bbs/board.php?bo_table=pbank&wr_id=2076&sca=20

 

JUNGOL

 

www.jungol.co.kr

 

 

728x90

'알고리즘 > 정올' 카테고리의 다른 글

1309. 팩토리얼  (0) 2020.12.10
1291. 구구단  (0) 2020.12.10
Comments