1. #include 2. 3. int main () 4. { 5. // calculates the mean of three integers 6. 7. int numone; 8. int numTwo; int numThree; 9. 10. 11. float ave; 12. 13. printf("Enter first integer: "); scanf ("&d", &numone); 14. 15. printf("\nEnter second integer: "); scanf ("$f", &numTwo); 16. 17. 18. printf("\nEnter third integer: "); scanf ("sd", &numThree); 19. 20. 21. 22. ave = (numone + numTwo + numThree)/3; 23. 24. printf("\nThe average is: +.3£ ",ave); 25. 26. return; 27.
1. #include 2. 3. int main () 4. { 5. // calculates the mean of three integers 6. 7. int numone; 8. int numTwo; int numThree; 9. 10. 11. float ave; 12. 13. printf("Enter first integer: "); scanf ("&d", &numone); 14. 15. printf("\nEnter second integer: "); scanf ("$f", &numTwo); 16. 17. 18. printf("\nEnter third integer: "); scanf ("sd", &numThree); 19. 20. 21. 22. ave = (numone + numTwo + numThree)/3; 23. 24. printf("\nThe average is: +.3£ ",ave); 25. 26. return; 27.
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
Related questions
Question
![1. finclude<std.h>
2.
3. int main ()
4. {
5.
// calculates the mean of three integers
6.
7.
int numone;
8.
int numTwo;
9.
int numThree;
10.
11.
float ave;
12.
printf("Enter first integer: ");
scanf ("$d", &numone);
13.
14.
15.
printf("\nEnter second integer: ");
scanf ("f", &numTwo);
16.
17.
18.
printf("\nEnter third integer: ") ;
scanf ("d", &numThree);
19.
20.
21.
22.
ave = (numone + numTwo + numThree) /3;
23.
24.
printf("\nThe average is: %.3f ", ave);
25.
26.
return;
27.
A sample output of the above program is as follows
Enter first integer: 7
Enter second integer: 13
Enter third integer: 9
The average is: 9.667
Identify and correct the errors by indicating the line numbers and giving the correct C syntax. [Note: Start from top to bottom i.e., from line 1 to line 27]
1. Line number
.C code
Line number
C code
2.
3.
Line number
C code
4.
Line number
C code
5.
Line number
C code](/v2/_next/image?url=https%3A%2F%2Fcontent.bartleby.com%2Fqna-images%2Fquestion%2F6a30be74-a81e-4985-b94d-4cd71e619e2d%2Fb823c033-0108-41e6-b119-f6f23c54bdbe%2Fv9ujucc_processed.png&w=3840&q=75)
Transcribed Image Text:1. finclude<std.h>
2.
3. int main ()
4. {
5.
// calculates the mean of three integers
6.
7.
int numone;
8.
int numTwo;
9.
int numThree;
10.
11.
float ave;
12.
printf("Enter first integer: ");
scanf ("$d", &numone);
13.
14.
15.
printf("\nEnter second integer: ");
scanf ("f", &numTwo);
16.
17.
18.
printf("\nEnter third integer: ") ;
scanf ("d", &numThree);
19.
20.
21.
22.
ave = (numone + numTwo + numThree) /3;
23.
24.
printf("\nThe average is: %.3f ", ave);
25.
26.
return;
27.
A sample output of the above program is as follows
Enter first integer: 7
Enter second integer: 13
Enter third integer: 9
The average is: 9.667
Identify and correct the errors by indicating the line numbers and giving the correct C syntax. [Note: Start from top to bottom i.e., from line 1 to line 27]
1. Line number
.C code
Line number
C code
2.
3.
Line number
C code
4.
Line number
C code
5.
Line number
C code
![1. tinclude<stdioh>
2.
3. int main
4. {
// calculates the mean of three integers
5.
6.
7.
int numone;
8.
int numTwo;
int numThree;
9.
10.
11.
float ave;
12.
printf("Enter first integer: ");
scanf ("&d", anumOne)
13.
14.
15.
printf("\nEnter second integer: ");
scanf ("%d", ánumTwo) ;
16.
17.
18.
printf("\nEnter third integer: ");
scanf ("f", ánumThree);
19.
20.
21.
22.
ave = (numone + numTwo + numThree)/3;
23.
24.
printf("\nThe average is: $.3f ",ave);
25.
26.
return 0;
27. )
A sample output of the above program is as follows
Enter first integer: 9
Enter second integer: 6
Enter third integer: 10
The average is: 8.333
Identify and correct the errors by indicating the line numbers and giving the correct C syntax. [Note: Start from top to bottom i.e, from line 1 to line 27]
1.
Line number
C code
Line number
C code
2.
3.
Line number
C code
4.
Line number
C code
Line number
.C code
5.](/v2/_next/image?url=https%3A%2F%2Fcontent.bartleby.com%2Fqna-images%2Fquestion%2F6a30be74-a81e-4985-b94d-4cd71e619e2d%2Fb823c033-0108-41e6-b119-f6f23c54bdbe%2Fw3lwo25_processed.png&w=3840&q=75)
Transcribed Image Text:1. tinclude<stdioh>
2.
3. int main
4. {
// calculates the mean of three integers
5.
6.
7.
int numone;
8.
int numTwo;
int numThree;
9.
10.
11.
float ave;
12.
printf("Enter first integer: ");
scanf ("&d", anumOne)
13.
14.
15.
printf("\nEnter second integer: ");
scanf ("%d", ánumTwo) ;
16.
17.
18.
printf("\nEnter third integer: ");
scanf ("f", ánumThree);
19.
20.
21.
22.
ave = (numone + numTwo + numThree)/3;
23.
24.
printf("\nThe average is: $.3f ",ave);
25.
26.
return 0;
27. )
A sample output of the above program is as follows
Enter first integer: 9
Enter second integer: 6
Enter third integer: 10
The average is: 8.333
Identify and correct the errors by indicating the line numbers and giving the correct C syntax. [Note: Start from top to bottom i.e, from line 1 to line 27]
1.
Line number
C code
Line number
C code
2.
3.
Line number
C code
4.
Line number
C code
Line number
.C code
5.
Expert Solution
![](/static/compass_v2/shared-icons/check-mark.png)
This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
This is a popular solution!
Trending now
This is a popular solution!
Step by step
Solved in 3 steps with 1 images
![Blurred answer](/static/compass_v2/solution-images/blurred-answer.jpg)
Knowledge Booster
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](https://www.bartleby.com/isbn_cover_images/9780078022159/9780078022159_smallCoverImage.jpg)
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)](https://www.bartleby.com/isbn_cover_images/9780134444321/9780134444321_smallCoverImage.gif)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
![Digital Fundamentals (11th Edition)](https://www.bartleby.com/isbn_cover_images/9780132737968/9780132737968_smallCoverImage.gif)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
![Database System Concepts](https://www.bartleby.com/isbn_cover_images/9780078022159/9780078022159_smallCoverImage.jpg)
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)](https://www.bartleby.com/isbn_cover_images/9780134444321/9780134444321_smallCoverImage.gif)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
![Digital Fundamentals (11th Edition)](https://www.bartleby.com/isbn_cover_images/9780132737968/9780132737968_smallCoverImage.gif)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
![C How to Program (8th Edition)](https://www.bartleby.com/isbn_cover_images/9780133976892/9780133976892_smallCoverImage.gif)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
![Database Systems: Design, Implementation, & Manag…](https://www.bartleby.com/isbn_cover_images/9781337627900/9781337627900_smallCoverImage.gif)
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
![Programmable Logic Controllers](https://www.bartleby.com/isbn_cover_images/9780073373843/9780073373843_smallCoverImage.gif)
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education