void input()
{
  int i;

// ASSIGN INPUT PARAMETERS.
  cout <<\"\\n\\nHow long day do you want to simulate? \";
  cin >> length;

 

  input();                      

  // 시뮬레이션의 상황을 모두 초기화 시킨다.
  for (i=0;i<ngroup;i++)
    nbusy[i] = 0;
    initlk();
    maxatr = 4;


  // 첫 일의 도착 시각을 계획 한다.
  trnsfr[0]=expond(marrvt);
  trnsfr[1]=1.;
  file(3,25);


  // 시뮬례이션이 끝나는 시각을 계획 한다.
  trnsfr[0] = 8. * length;
  trnsfr[1] = 3.;
  file(3, 25);


  timing();                        // 처음 발생할 이벤트를 결정한다.

  while (next < 3)                // 시뮬 종료 시간까지 반복작업
  {                    

      if ((int)next==1)
         arrive(1);

      else if ((int)next==2)
         depart();

      timing();

  }


  report();                        // 모든결과를 보고하고 끝낸다.
  return
}



자꾸 오류가 떠,,,이렇게 ㅠㅠㅠㅠ
Compiling...
JOBSHOP1.CPP
C:\\Documents and Settings\\Class\\바탕 화면\\JOBSHOP1.CPP(127) : error C2059: syntax error : \'}\'
Error executing cl.exe.

JOBSHOP1.exe - 1 error(s), 0 warning(s)