c언어질문.
냐하
질문 제목 : 질문 내용 :
#includestdio.h
#includetime.h
#includewindows.h
void color(unsigned short color);
void gotoxy(int x, int y);
void cursorview(char show);
void randomlotto(int *arr);
void showlottonum(int* arr);
void cornumber(int* arr1,int *arr2);
struct buyer{
char* buyername;
int* buylottonum;
int cornum;
void infobuyer(){
printf(구매자이름을 입력하세요:);
scanf(%s,&buyername);
printf(로또번호를 입력하세요:);
for(int i=0;i7;i++){
scanf(%d,&buylottonum);
}
}
};
struct buyer buy={0,0,0};
int main(void){
buy.infobuyer();
int* array; //정답
srand(time(null)); // 초기화.
array=(int*)malloc(sizeof(int)*6);
randomlotto(array);
showlottonum(array);
cornumber(buy.buylottonum,array);
getchar();
return 0;
}
void cornumber(int* arr1,int* arr2){
for(int i=0;i7;i++){
for(int j=0;j7;j++){
if(arr1[i]==arr2[j])
buy.cornum++;
}
}
printf(맞은갯수는 %d,&buy.cornum);
}
void color(unsigned short color)
{
handle hcon = getstdhandle(std_output_handle);
setconsoletextattribute(hcon,color);
}
void gotoxy(int x, int y)
{
coord pos = {x - 1, y - 1};
setconsolecursorposition(getstdhandle(std_output_handle), pos);
}
void cursorview(char show) //커서 숨기기, 보이기(0, 1)
{
handle hconsole;
console_cursor_info consolecursor;
hconsole = getstdhandle(std_output_handle);
consolecursor.bvisible = show;
consolecursor.dwsize = 1;
setconsolecursorinfo(hconsole , &consolecursor);
}
void randomlotto(int *array){
for(int i=0;i7;i++){
array[i]=rand()%45 +1;
for(int j=0;ji;j++){
if(array[i]==array[j])
i--;
}
}
}
void showlottonum(int* arr){
for(int r=0;r7;r++){
if(r6){
printf(%d ,arr[r]);
}
else if(r==6){
color(13);
printf(보너스번호추첨:);
printf(%d,arr[r]);
color(7);
}
}
}
실행은되는데 로또번호를 show해준다음에 에러가 뜨면서 꺼져버리네요.
아마 빨갛게 표시되는 부분이 에러인거같은데 무엇이 문제인지를 모르겠네요
-
키움
BuyLottoNum문이 포인터로만 선언 되어 있습니다. 배열로 만들어 입력 부분 수정 하시면 될것 같습니다.
그리고 솔직히 말해 디버거도 모든 사람이 비쥬얼 스튜디오를 사용하는건 아니니 따로 만들어서 관리 해 보면 됩니다.
#define VERBOSE 1
#define LOG(x) do { if (VERBOSE) printf x; } while (0)
위에 위 문장 적어 놓으시고 알고 싶은 부분에
LOG((\debug BuyLottoNum -
단순드립
에러가 뜬다고 하셨는데, 에러 메시지 내용이 무엇인지요?
실행중에 에러 나는 것은 디버거를 이용해서, 실행하면서 값을 확인해보는 수 밖에는 없습니다.
번호 | 제 목 | 글쓴이 | 날짜 |
---|---|---|---|
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 |