Algorithm/C

쉽게 풀어쓴 C언어 EXPRESS 10장 프로그래밍 15번 솔루션 답지

Printemp 2021. 10. 25.
#include <stdio.h>
#include <stdlib.h>
#include <time.h>

#define SIZE 10

int main()
{
	int bm[SIZE][SIZE] = { 0 };
	srand((unsigned)time(NULL));
	int i, n;
	
	for (i = 0; i < SIZE; i++)
	{
		for (n = 0; n < SIZE; n++)
		{
			if (rand() % 99 <= 30)
				printf("#");
			else
				printf(".");
		}
		printf("\n");
	}
}

댓글

💲 추천 글