로또 번호를 생성하여 출력하는 코드를 작성하세요. 번호는 중복되어선 안됩니다.
출력 예)
코드는 아래에~~~~~~~~~~~~~~~~~~~~~
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
#include <iostream>
using namespace std;
int main()
{
std::srand(static_cast<unsigned int>(std::time(nullptr)));
int lotto[6] = { 0 };
int count = 0;
bool isSame = false;
while (true)
{
isSame = false;
lotto[count] = std::rand() % 45 + 1;
if (count > 0)
{
for (int i = 0; i < count; i++)
{
if (lotto[i] == lotto[count]) {
isSame = true;
break;
}
}
}
if(!isSame)count++;
if (count == 6) break;
}
for (int i = 0; i < sizeof(lotto) / sizeof(*lotto); i++)
{
cout << "로또 번호 " << i + 1 << ":" << lotto[i] << endl;
}
return 0;
}
|
cs |
'프로그래밍 문제 > c++ 문제' 카테고리의 다른 글
c++ 문제 33. 피보나치 수열 (0) | 2023.11.15 |
---|---|
c++ 문제 31. 간단한 계산기 (1) | 2023.11.13 |
c++ 문제 29. 다이아몬드 별 출력 (0) | 2023.11.07 |
c++ 문제 28. 피라미드 별 출력 (0) | 2023.11.03 |
c++ 문제 27. 주어진 배열의 중복된 숫자를 동적 배열로 이전 (0) | 2023.11.02 |
댓글