Why am I getting this error?

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter11: Introduction To Classes
Section11.2: Basic Class Functions
Problem 5E
icon
Related questions
Question

Why am I getting this error?

// price of tickets
const double cost_A = 15.00;
const double cost B = 12.00;
const double cost C = 9.00;
// define variables
int seat_A;
int seat B;
int seat_C;
double totalincome;
//tickets in class A
-5
std::cout « "100:
26
std::cin >> seat_A;
27
28
//tickets in class B
std::cout « "75: ";
std::cin >> seat_B;
29
30
31
32
//tickets in class C
std::cout « "50: ";
std::cin >> seat_C;
33
34
35
total_income = (seat A * cost A) +
(seat B cost_B) +
(seat C) cost_C;
36
%3D
37
38
39
// display income from sales
std::cout << "\nTotal income made from ticket sales is: ";
40
41
42
43
//Print total income
std::cout << std::fixed << std::showpoint << setprecision(2) .
« total_income << "\n\n" ;
44
Use of undeclared identifier'.
45
46
47
//Pause the system
system ("pause");
//Return
return 0;
48
49
50
51 }
52
Transcribed Image Text:// price of tickets const double cost_A = 15.00; const double cost B = 12.00; const double cost C = 9.00; // define variables int seat_A; int seat B; int seat_C; double totalincome; //tickets in class A -5 std::cout « "100: 26 std::cin >> seat_A; 27 28 //tickets in class B std::cout « "75: "; std::cin >> seat_B; 29 30 31 32 //tickets in class C std::cout « "50: "; std::cin >> seat_C; 33 34 35 total_income = (seat A * cost A) + (seat B cost_B) + (seat C) cost_C; 36 %3D 37 38 39 // display income from sales std::cout << "\nTotal income made from ticket sales is: "; 40 41 42 43 //Print total income std::cout << std::fixed << std::showpoint << setprecision(2) . « total_income << "\n\n" ; 44 Use of undeclared identifier'. 45 46 47 //Pause the system system ("pause"); //Return return 0; 48 49 50 51 } 52
Expert Solution
steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
Binary numbers
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT