저는 학생이며 인터넷에서이 코드를 발견했습니다. 아무도 여기에 사용 된 algorythm을 설명 할 수 있습니까?오래된 C 코드를 이해하도록 도와주세요.
#include<stdio.h>
#include<dos.h>
#include<conio.h>
#include<stdlib.h>
void main()
{
int count=50;
clrscr();
while(count--)
{
sound(10*random(100));
delay(75);
nosound();
textattr(random(16)+'a'+BLINK);
cprintf("*");
}
}
소리() 란 무엇입니까? 지연 기능은 무엇을합니까, ms 또는 초 또는 초 동안 지연합니까? nosound 무엇입니까? –
나는 실제로는 모르겠다. 나는 터보 C로 튜닝하고 놀랐다. 다성 음악 톤이 나왔다 ... – Dev
http://eforengineers.blogspot.in/2013_08_13_archive.html – Dev