/*숫자를 하나 입력받아서 그 숫자에 해당하는 구구단을 출력하는
프로그램을 작성해보자.
*/
#include<iostream>
int main(void)
{
int a;
std::cout<<"하나의 숫자를 입력하세요 : " ;
std::cin>>a;
for(int i=1; i<10; i++)
{
std::cout<<a<<"*"<<i<<"="<<a*i<<std::endl;
}
return 0;
}
프로그램을 작성해보자.
*/
#include<iostream>
int main(void)
{
int a;
std::cout<<"하나의 숫자를 입력하세요 : " ;
std::cin>>a;
for(int i=1; i<10; i++)
{
std::cout<<a<<"*"<<i<<"="<<a*i<<std::endl;
}
return 0;
}
'프로그래밍 > [열혈강의] C++' 카테고리의 다른 글
연습문제 1-1 문제4 (1) | 2008.03.05 |
---|---|
연습문제 1-1 문제2 (0) | 2008.03.05 |
연습문제 1-1 문제1 (0) | 2008.03.05 |