제가 c++로 타자연습의 산성비 비슷한 프로그램을 만들어보려고 하는데요.. 쌩초보라 뭘 어떻게 써야할지 모르겠어요..ㅠㅠ
밑에는 인터넷에서 조금씩 본거로 만들어놓은건데, 영어 단어를 여러개를 위에서 떨어지게끔 하고싶은데 밑에처럼하면 apple 하나만 내려와요.. 어떻게 해야 단어들이 랜덤으로 떨어지게 되는걸까요.. 가르쳐 주세요 ㅠ,ㅠ 혼자하려는데 너무 막막합니다..
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <windows.h>
void gotoxy(int x, int y, char *s)
{
COORD pos = { 2 * x, y };
SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE), pos);
printf("%s", s);
}
void main()
{
char word[10][10] = { "apple","melon","mango" };
int wordx = 0;
int wordy = 0;
int len, i;
srand((unsigned)time(NULL));
len = strlen(word);
while (1)
{
gotoxy(wordx, wordy, ("%s", word[0]));
Sleep(1000);
for (i = 0; i < len; i++)
gotoxy((wordx + i) / 2, wordy, " ");
wordy++;
gotoxy(wordx, wordy, ("%s", word[0]));
}
}