#include <stdio.h>
#include <stdlib.h>
#include <time.h>
void main()
{
int i=0,num;
srand(time(NULL));
while(i<20)
{
num=rand()%100+1;
if(num%2)
{
printf("%5d",num);
i++;
if(i%5==0)
printf("\n");
}
}
}
'프로그래밍 > C언어' 카테고리의 다른 글
화면을 지우는 DOS명령어 (0) | 2017.09.20 |
---|---|
쉽게 풀어쓴 C언어 Express 7장 Programming (2) | 2017.09.20 |
최소값 구하기 (0) | 2017.09.20 |
값을 무한입력받다 특정값이 나오면 멈추는 코드 (0) | 2017.09.20 |
C언어 비트 단위 연산자 (0) | 2017.09.20 |