[問題] 請各位高手幫個忙
請各位高手幫我檢查一下.謝謝
錯誤:
error C2601: 'getSeat' : local function definitions are illegal
fatal error C1075: end of file found before the left brace '{'
#include <iostream>
using namespace std;
const int NUMROWS = 7;
const int NUMSEATS = 4;
void initPlane(char plane[NUMROWS][NUMSEATS]);
// POSTCONDITION:
// plane[x][0] == 'A', 0<=x<=6
// plane[x][1] == 'B', 0<=x<=6
// plane[x][2] == 'C', 0<=x<=6
// plane[x][3] == 'D', 0<=x<=6
void printPlane(char msg[], char plane[NUMROWS][NUMSEATS]);
// POSTCONDITION: The seating layout of the plane has been printed
// to the standard output with an X displayed for each taken seat.
void getSeat(char &row, char &seat);
// POSTCONDITION: 1 <= row <= 7, 'A' <= seat <= 'D'
// Note that getSeat does not check to see if the seat has been taken.
int main()
{
int seatsTaken = 0;
int seats = NUMROWS * NUMSEATS;
char plane[NUMROWS][NUMSEATS];
char keepGoing = 'y';
char row, seat;
int rowIndex, seatIndex;
initPlane(plane);
cout << "Choose your seat!" << endl;
while (seatsTaken < seats && keepGoing == 'y')
{
//
// Show layout and get seat choice
//
printPlane("Plane layout; X designates taken seats", plane);
cout << "Enter the row(1-7) and seat(A-D) you would like (e.g., 3D): ";
getSeat(row, seat);
//
// Adjust input to use as indices
//
rowIndex = row - '1';
seatIndex = seat - 'A';
//
// Check to see if seat is taken
//
if (plane[rowIndex][seatIndex] == 'X')
cout << "Sorry, " << row << seat << " is already taken." << endl;
else
{
cout << "OK, you've got " << row << seat << endl;
plane[rowIndex][seatIndex] = 'X';
seatsTaken++;
}
//
// If there are seats left, see if we should keep going
//
if (seatsTaken < seats)
{
cout << "Choose another seat? (y/n) ";
cin >> keepGoing;
}
else
cout << "Plane is now full!" << endl;
}
printPlane("Final seating chart", plane);
}
// --------------------------------
// ----- ENTER YOUR CODE HERE -----
// --------------------------------
void initPlane(char plane[NUMROWS][NUMSEATS])
{
for (int i=0; i<NUMROWS; i++)
{
plane[i][0] = 'A';
plane[i][1] = 'B';
plane[i][2] = 'C';
plane[i][3] = 'D';
}
}
void printPlane(char msg[], char plane[NUMROWS][NUMSEATS])
{
cout << msg << endl;
for (int i=0; i<NUMROWS; i++)
{
for (int j=0; j<NUMROWS; j++)
cout << plane[i][j] << " ";
cout << endl;
{
}
void getSeat(char &row, char &seat)
{
cin >> row >> seat;
while(row > '7' || row < '1' || seat < 'A' || seat > 'D')
{
cout << "\nInput row number and seat, 1 <= row <= 7, 'A' <= seat <= 'D': ";
cin >> row >> seat;
}
}
// --------------------------------
// --------- END USER CODE --------
// --------------------------------
--
※ 發信站: 批踢踢實業坊(ptt.cc)
◆ From: 71.199.79.106
→
05/09 11:21, , 1F
05/09 11:21, 1F
推
05/09 11:33, , 2F
05/09 11:33, 2F
→
05/09 11:35, , 3F
05/09 11:35, 3F
→
05/09 11:36, , 4F
05/09 11:36, 4F
→
05/09 11:38, , 5F
05/09 11:38, 5F
→
05/09 14:37, , 6F
05/09 14:37, 6F
推
05/09 15:14, , 7F
05/09 15:14, 7F
→
05/09 15:15, , 8F
05/09 15:15, 8F
→
05/09 15:54, , 9F
05/09 15:54, 9F
→
05/09 15:55, , 10F
05/09 15:55, 10F
推
05/09 16:31, , 11F
05/09 16:31, 11F
→
05/09 16:31, , 12F
05/09 16:31, 12F
C_and_CPP 近期熱門文章
PTT數位生活區 即時熱門文章