Create a program that outputs the average of three input numbers. Let the values of the three input numbers be, 10, 20 and 45.

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
icon
Concept explainers
Question
100%

How to fix this? I'll rate! 

Create a program that outputs the average of three input numbers. Let the values of the three input numbers be, 10, 20 and 45. The expected screen output is,

 

The value 10, 20 and 45 are input values during running time executi
OUTPUT
number 1 = 10
number 2 = 20
number 3 = 45
Average is = 25
Transcribed Image Text:The value 10, 20 and 45 are input values during running time executi OUTPUT number 1 = 10 number 2 = 20 number 3 = 45 Average is = 25
Codio
Project
File
Edit
Find
View
Tools
Education
Help
A Compile & Run
> Project Index (static)
O Debug Current File
JANGELES8
task2.c
3. Task 2: Getting.
#include<iostream>
using namespace std;
int main()
2
Collapse
{
// declare variables
double numl, num2, num3;
double sum, average;
4 .
3. Task 2: Getting the average of three numbers
6
7
8
Check your program by clicking the buttons below...
9
// take input from end-user
10
cout << "Enter three Numbers: ";
11
cin >> num1 >> num2 >> num3;
COMPILE!
12
// calculate sum value
sum = numl + num2 + num3;
13
14
task2.c:1:9: fatal error: iostream: No
15
such file or directory
16
// calculate average value
17
average = sum / 3;
#include<iostream>
18
// display result
cout << "Sum = " << sum << endl;
19
compilation terminated.
20
21
cout << "Average = " << average << endl;
22
23
return 0;
RUN!
24
}
task2
0% (1:0)
C
Transcribed Image Text:Codio Project File Edit Find View Tools Education Help A Compile & Run > Project Index (static) O Debug Current File JANGELES8 task2.c 3. Task 2: Getting. #include<iostream> using namespace std; int main() 2 Collapse { // declare variables double numl, num2, num3; double sum, average; 4 . 3. Task 2: Getting the average of three numbers 6 7 8 Check your program by clicking the buttons below... 9 // take input from end-user 10 cout << "Enter three Numbers: "; 11 cin >> num1 >> num2 >> num3; COMPILE! 12 // calculate sum value sum = numl + num2 + num3; 13 14 task2.c:1:9: fatal error: iostream: No 15 such file or directory 16 // calculate average value 17 average = sum / 3; #include<iostream> 18 // display result cout << "Sum = " << sum << endl; 19 compilation terminated. 20 21 cout << "Average = " << average << endl; 22 23 return 0; RUN! 24 } task2 0% (1:0) C
Expert Solution
steps

Step by step

Solved in 3 steps with 2 images

Blurred answer
Knowledge Booster
Operators
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
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education