변수 뒤에 i를 붙이고 싶습니다.
튼튼
질문 제목 : 변수 뒤에 i를 붙이고 싶습니다.질문 요약 :
안녕하세요!! c언어 초보입니다.
프로그램 작성중에 궁금한 사항이 있어서 들렀어요~
tpump(1), tpump(2) 라는 변수를 선언하고 i=i+1; 로 해서 tpump(i)로 앞에서 선언한 변수tpump(1), tpump(2)를 받아오고 싶은데받기도 전에에러가 뜨네요 왜이러는 건가요 ㅠㅠ?질문 내용 :
void main()
{
long seed,nseed;
int p, queue = 0, totque = 0, time=0, totarr=0, arrive, tstep = 1, i;
// prarr = 1.0/(60/27) 참고 //
float prarr=0.454545, tpump(1)=0.0, tpump(2)=0.0, tlimit=150, u=0, aveque=0;
file *output; seed=seed;
nseed=seed;
output=fopen(limsungmin.txt,wt); fprintf(output, simulation for a queueing system \n\n);
fprintf(output,the time step = %d \n,tstep); //분의 시간증가
fprintf(output,the time limit = %3.0f \n,tlimit); //시간의 증가값
fprintf(output,the arrival probability = %4.2f \n,prarr); //도착여부의 확률?
fprintf(output,the poisson mean = %1.0f \n,mean);
fprintf(output,the seed = %ld \n\n,seed);
fprintf(output, time arrival queue tpump\n); while (time tlimit)
{
time = time + tstep;
arrive = 0; random(&seed, &u); if (u (prarr*tstep))
{ arrive = 1;
queue = queue + arrive;
totarr = totarr + 1;
}
i=0;
while (i=2)
i=i+1;
if (tpump(i) 0.0)
{ tpump(i) = tpump(i) - tstep;/fonep;
if (tpump(i) 0.0) tpump(i) = 0.0;
}
if ((tpump(i) == 0) && (queue != 0))
{ queue = queue - 1;
poissn(&nseed,&p);
tpump(i) = p;
}
totque = totque + queue;
fprintf(output, %3d %d %2d %2.0f \n,time,arrive,queue,tpump);
}
aveque = totque / (tlimit/tstep);
fprintf(output, mean queue length = %4.2f \n,aveque);
fprintf(output, the total arrivals = %d \n,totarr);
fprintf(output, the total queue = %d \n,totque);
fclose(output);
}
-----------------------------------------------------------------------------------------------------------
-
비
아!! 해결했네요.. 감사합니다!!
-
호빵녀
하아,,, 저는 tpump가 함수인 줄 알고 있다가 수다님 말씀 보고 알았네요...
float tpump[2] = {0.0, 0.0};
이렇게하시구 tpump[0], [1]로 접근하시면 됩니다. -
희1미햬
원하시는게 배열을 원하시는거같은데.
tpump(i) 가아니고
int tpump[10]; 입니다.
번호 | 제 목 | 글쓴이 | 날짜 |
---|---|---|---|
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 |
2675356 | 2진수를 10진수로 바꾸려고 하는데 막히네요.. | 풀잎 | 2024-11-17 |