# include <Windows.h>
# include <stdio.h>
# include <time.h>
void main(){
// # 실습예제 : 반복문, 조건문, 랜덤 활용
// 구구단 문제 랜덤 출제후 정답입력후 결과출력
// 2단부터
while(1){
srand(time(0));
int a = rand() % 8 + 2;
int b = rand() % 9 + 1;
int c = a * b;
printf("%d * %d = " , a , b);
int d;
scanf_s("%d", &d);
if(d == c){
printf("정답\n");
}
if(d != c){
printf("땡\n");
}
}
system("pause");
}
'C > ☞' 카테고리의 다른 글
[27]-A. 연산자 맞추기 (0) | 2020.07.15 |
---|---|
[27] 연산자 맞추기 (0) | 2020.07.15 |
[26] 구구단 게임 (0) | 2020.07.15 |
[25] 보조 제어문 | continue, break (0) | 2020.07.15 |
[24] 조건문 : switch - case (0) | 2020.07.15 |
댓글