변수 뒤에 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]; 입니다.
번호 | 제 목 | 글쓴이 | 날짜 |
---|---|---|---|
2694854 | 절대값을 구할때 (2) | 그녀는귀여웠다 | 2025-05-15 |
2694827 | 이제 어떻게 공부해야할지 모르겠네요 | 새얀 | 2025-05-14 |
2694778 | 순열 계산요. | 맛조이 | 2025-05-14 |
2694754 | ShowWindow 함수를 이용하려 하는데 질문있습니다. (2) | 파도 | 2025-05-14 |
2694731 | 리눅스 커널의 시작점 질문 | 미르 | 2025-05-13 |
2694702 | 이거 뭐가문제인가요 코드수정좀 (3) | 맑은 | 2025-05-13 |
2694675 | C언어 후위표기를 중위표기로 | 앨런 | 2025-05-13 |
2694646 | 안녕하세요 파일 합치기 함수! (1) | 연블루 | 2025-05-13 |
2694618 | 잘몰라서 설명부탁드립니다. scanf 관련 (3) | 파라 | 2025-05-12 |
2694590 | 이 코드가 뭐하는 코드일까요? #2 | 빵순 | 2025-05-12 |
2694559 | 동적할당으로 배열(2차원열)을 만드는데 있어 그걸 함수화시키는데... (1) | 늘솔길 | 2025-05-12 |
2694532 | 네트워크에 관하여... (4) | 황소자리 | 2025-05-12 |
2694503 | 프로그램 연산 후 바로 종료되는 현상 (6) | Judicious | 2025-05-11 |
2694450 | while문질문입니다. (1) | 허리품 | 2025-05-11 |
2694420 | C언어 질문할게요(유니코드,자료형,버퍼,캐스트연산자) | 은새 | 2025-05-11 |
2694370 | 내일까진데 함수호출 제발 도와주세요!!!!!!!!!11 | 들찬 | 2025-05-10 |
2694339 | putchar()의 괄호 안에 int c=10;로 전에 선언된 c를 넣으면 안되는 이유에서 제가 생각한 것이 그 이유가 되는지 확인하고 싶습니다. (3) | 미르 | 2025-05-10 |
2694316 | 이 코드 어디가 잘못되었는지 고수분들 ㅠㅠ (2) | 나빛 | 2025-05-10 |
2694285 | 언어 공부하는 과정 좀 추천해주세요! (1) | 아빠몬 | 2025-05-09 |
2694258 | 카운터.. 질문입니다. (4) | 하늘빛눈망울 | 2025-05-09 |