비트게임을 만드는데 다중스레드가 없 ㅋ 엉 ㅋ
조으다
질문 제목 : 질문 내용 :
#include stdio.h
#include stdlib.h
#include windows.h
#include conio.h
#include time.h
#define left 75
#define right 77
#define up 72
#define down 80
void cursor(char s)
{
handle hconsole;
console_cursor_info consolecursor;
hconsole = getstdhandle(std_output_handle);
consolecursor.bvisible = s;
consolecursor.dwsize = 1;
setconsolecursorinfo(hconsole, &consolecursor);
}
gotoxy(int x, int y)
{
coord pos = {x-1, y-1};
setconsolecursorposition(getstdhandle(std_output_handle), pos);
}
void main()
{
int i;
int luck;
srand(time(null));
cursor(0);
system(color 2a);
printf(\n\n\n\n\n\n\n\n\n);
printf( ○\n);
printf( ○ ○\n);
printf( ○\n);
printf(\n\n\n);
for(i = 1; i = 65; i++)
{
gotoxy(i, 20);
printf(are you ready?);
gotoxy(i - 1, 20);
printf( );
sleep(50);
}
getch();
while(1)
{
luck = rand() % 4;
if(luck == 0) {
printf(\n\n\n\n\n\n\n\n\n);
printf( ●\n);
printf( ○ ○\n);
printf( ○\n);
sleep(150);
system(cls);
}
else if(luck == 1) {
printf(\n\n\n\n\n\n\n\n\n);
printf( ○\n);
printf( ● ○\n);
printf( ○\n);
sleep(150);
system(cls);
}
else if(luck == 2) {
printf(\n\n\n\n\n\n\n\n\n);
printf( sp; ○\n);
printf( ○ ●\n);
printf( ○\n);
sleep(150);
system(cls);
}
else if(luck == 3) {
printf(\n\n\n\n\n\n\n\n\n);
printf( ○\n);
printf( ○ ○\n);
printf( ●\n);
sleep(150);
system(cls);
}
}
}여기다가 다중스레드 얹혀놓고
키보드 로 리듬마추는 프로그램만드는게 가능합니까
번호 | 제 목 | 글쓴이 | 날짜 |
---|---|---|---|
2676182 | 숫자 순서대로 배열하는법 | 권뉴 | 2024-11-24 |
2676152 | 기본적인거 하나 질문드립니다. | 개미 | 2024-11-24 |
2676124 | 함수선언관련 질문이에요~...털썩..수정완료 (2) | 가지 | 2024-11-24 |
2676092 | C언어 책 (2) | 아서 | 2024-11-24 |
2676065 | 웹사이트 또는 메신저 등에서 원하는 텍스트를 검사하는방법?? (1) | 모든 | 2024-11-23 |
2676033 | 배열 기초연습중 발생하는 에러 ㅠㅜ... | Creative | 2024-11-23 |
2676005 | keybd_event 게임 제어 | 영글 | 2024-11-23 |
2675900 | 진짜기본적인질문 | 글길 | 2024-11-22 |
2675845 | 수정좀해주세요ㅠㅠㅠ | 해골 | 2024-11-21 |
2675797 | 병합 정렬 소스 코드 질문입니다. (2) | 도래솔 | 2024-11-21 |
2675771 | 큐의 활용이 정확히 어떻게 되죠?? | 해긴 | 2024-11-21 |
2675745 | 도서관리 프로그램 질문이요 | 도리도리 | 2024-11-20 |
2675717 | 2진수로 변환하는것! (3) | 동생몬 | 2024-11-20 |
2675599 | for문 짝수 출력하는 법 (5) | 널위해 | 2024-11-19 |
2675575 | Linux 게시판이 없어서.. | 첫삥 | 2024-11-19 |
2675545 | 구조체 이용할 때 함수에 자료 넘겨주는 것은 어떻게 해야 하나요? | 아연 | 2024-11-19 |
2675518 | 사각형 가로로 어떻게 반복해서 만드는지좀.. 내용 | 신당 | 2024-11-18 |
2675491 | !느낌표를 입력하는것은 어떻게합니까~~?ㅠㅠ (5) | 사지타리우스 | 2024-11-18 |
2675411 | 파일입출력으로 받아온 파일의 중복문자열을 제거한 뒤 파일출력 | 앨버트 | 2024-11-17 |
2675385 | 링크드리스트 주소록 질문드립니다. (1) | 겨루 | 2024-11-17 |