해결된 질문
작성
·
362
0
for (int two = 2, i = 1; i < 10; ++i)
{
cout << two;
cout << " x ";
cout << i;
cout << " = " << (two * i) << endl;
}
for (int i = 2; i < 10; ++i)
{
cout << i << "단" << endl;
for (int j = 1; j < 10; ++j)
{
cout << i;
cout << " x ";
cout << j;
cout << " = ";
cout << (i * j) << endl;
}
}
더 다양한 방법이 있다면 올려주세요. 같이 공부하고 싶어요..
답변 4
2
1
저는 이렇게 해봤어요 숫자 입력 받아서 해당 숫자의 단 출력하기
int input_num;
cin >> input_num;
for (int i = 0; i <= 9; ++i)
{
int multiply{ input_num * i };
cout << input_num << " * " << i << " = "
<< multiply << endl;
}
0
0
#include<iostream>
using namespace std;
int main()
{
int number;
cin>>number;
for(int i=2; i<=number; i++)
{
cout<<i<<"단\n";
for(int j=1;j<=number;j++)
{
cout<<i<<" * "<<j<<" = "<< i*j<<"\n";
}
cout<<"\n";
}
return 0;
}