10개의 구구단 문제를 함수 rand()를 이용하여 출력하는 프로그램을 작성하시오.
#include <stdio.h>
#include <stdlib.h>
int main(void)
{
int i;
for(i=1;i<=10;i++)
printf("%d) %d*%d=?\n", i, rand()%9+1, rand()%9+1);
return 0;
}
// 실행 결과
#include <stdio.h>
#include <stdlib.h>
int main(void)
{
int i;
for(i=1;i<=10;i++)
printf("%d) %d*%d=?\n", i, rand()%9+1, rand()%9+1);
return 0;
}
// 실행 결과
'공부 > c언어' 카테고리의 다른 글
[c언어](연습문제) 생년월일을 입력하면 만 나이를 계산 (3) | 2011.05.30 |
---|---|
[c언어](연습문제) 복권번호를 출력하는 프로그램 (0) | 2011.05.30 |
[c언어] 0부터 1사이의 실수 난수를 출력(rand) (0) | 2011.05.25 |
[c언어] 로또 당첨번호 생성. 1부터 45사이의 정수 난수를 출력(rand, srand) (3) | 2011.05.25 |
[c언어] 현재 시간을 연속적으로 출력(kbhit, localtime) (0) | 2011.05.24 |