반응형
#include <iostream>
#include <ctime> // seed값을 시간으로 주기 위해 포함
#include <iomanip> // setw() 함수를 쓰기 위해 포함
using namespace std;
int main()
{
// 시간을 seed로 가진 난수 발생 (한번만 선언한다)
srand((unsigned)time(NULL));
int cnt;
cout << "당신이 뽑길 원하는 로또 개수를 선택";
cin >> cnt;
cout << cnt << "개 선택" << endl << endl;
for(int i=0; i<cnt; i++)
{
cout << i+1 << " : ";
cout << setw(3) << rand()%45+1 << " " << setw(3) << rand()%46+1 << " ";
cout << setw(3) << rand()%46+1 << " " << setw(3) << rand()%46+1 << " ";
cout << setw(3) << rand()%46+1 << " " << setw(3) << rand()%46+1 << endl;
}
return 0;
}
반응형
'System Programmings > C++' 카테고리의 다른 글
[C++] 이미지 바이너리 읽기 (4) | 2014.03.10 |
---|---|
[C++] 퀵 정렬 (Quick Sort) C++ 이용한 다른 소스 (2) | 2010.10.06 |
[C++] 가상함수의 활용 (0) | 2010.07.08 |
[C++] 상속된 클래스에서 형변환 & 가상 함수 (0) | 2010.07.08 |
[C++] 얕은 복사의 착각 (0) | 2010.07.07 |