728x90
# for문
#include <iostream>
using namespace std;
int main() {
int start, end;
cout << "구구단 for문" << endl;
cout << "시작 단을 입력하세요 >> ";
cin >> start;
cout << "끝 단을 입력하세요 >> ";
cin >> end;
if (start > end) {
int tmp = start;
start = end;
end = tmp;
}
for (int i = 1; i <= 9; i++) {
for (int j = start; j <= end; j++) {
cout << j << "*" << i << "=" << i * j << "\t";
}
cout << endl;
}
}
# while문
#include <iostream>
using namespace std;
int main() {
int start, end;
cout << "구구단 while문" << endl;
cout << "시작 단을 입력하세요 >> ";
cin >> start;
cout << "끝 단을 입력하세요 >> ";
cin >> end;
if (start > end) {
int tmp = start;
start = end;
end = tmp;
}
int i = 1;
while (i <= 9) {
int j = start;
while (j <= end) {
cout << j << "*" << i << "=" << i * j << "\t";
j++;
}
cout << endl;
i++;
}
}
반응형
'전공 공부 > C++' 카테고리의 다른 글
두 정수를 입력받아 큰 수를 구하는 함수 (0) | 2021.03.25 |
---|---|
C++프로그래밍 4주차 강의 (0) | 2021.03.25 |
2부터 100까지의 3의 배수의 합구하기2부터 100까지의 3의 배수의 합구하기 (0) | 2021.03.21 |
C++ 프로그래밍 3주차 (0) | 2021.03.18 |
chp2 실습문제 3번 (0) | 2021.03.14 |