로딩
요청 처리 중입니다...

c언어 matrix

 c언어 matrix

위에서 알파벳이 바뀌면서 내려옴. #include #include #include #include typedef struct Point{ int y; int x; //미리 초기화 안됨!

}Point; typedef struct Signal{ char ch; Point pos; int exist; int speed; }Signal; void gotoyx(int y, int x); void Show(int flag); void move(); Signal s[100]; int cnt=0; int p;//발생확률 void main() { srand(time(NULL)); gotoyx(18,0); printf("==============================================================================="); while(1) { p=rand()%3; //발생확률 if(p...

원문 링크 : c언어 matrix