728x90
#include <iostream>
using namespace std;
int main()
{
int x = 0, y;
while (++x&&x < 10) {
for (y = 1; y <= 9; y++) {
cout << x << "*" << y << "=" << x * y << endl;
}
}
return 0;
}
*/
#include <iostream>
using namespace std;
int main()
{
int x, y;
for (x = 2; x <= 9; x++)
{
for (y = 1; y <= 9; y++)
{
cout << x << "*" << y << "=" << x * y << endl;
}
}
return 0;
}
'Language > C++ & openGL' 카테고리의 다른 글
C++기초 함수호출 (0) | 2019.01.08 |
---|---|
C++기초 알파벳 대문자를 소문자로 소문자를 대문자로 변환 / 반복문 (0) | 2019.01.08 |
C++기초 세 개의 정수 중 가장 작은 값(최솟값) 구하기 (0) | 2019.01.08 |
C++기초 Variable sizeof, int double char (0) | 2019.01.08 |
C++ 기초 별 피라미드 Star pyramid, for while if 연습 (0) | 2019.01.08 |
댓글