Question: Ask the user for the name of the file to get input from. The data is stored in this form: double double double int The three doubles represent the sides of a triangle. The fourth number is an integer scale factor. Output should be to the screen in this form: The original triangle sides were: 2.870 11.900 10.750 With a scale factor of 2, the new triangle sides are: 5.740 23.800 21.500

Np Ms Office 365/Excel 2016 I Ntermed
1st Edition
ISBN:9781337508841
Author:Carey
Publisher:Carey
Chapter7: Developing An Excel Application
Section: Chapter Questions
Problem 1.18CP
icon
Related questions
Question

Hi, I need to solve this question using C++ programming language. Thank you.

Note: I have included Program - 5-23, General Program Format Rules.

 

Program 5-23

// This program tests for file open errors.

#include <iostream>

#include <fstream>

using namespace std;

 

int main()

{

ifstream inputFile;

int number;

 

// Open the file.

inputFile.open("BadListOfNumbers.txt");

 

// If the file successfully opened, process it.

if (inputFile)

{

// Read the numbers from the file and

// display them.

while (inputFile >> number)

{

     cout << number << endl;

}

 

// Close the file.

inputFile.close();

}

else

{

// Display an error message.

cout << "Error opening the file.\n";

}

return 0;

}

You will be using Visual Studio to create the following programs. Make sure you
see that these are separate programs.
1.
2.
Make sure that you follow the General Program Format Rules for each program
The closer the form of your output matches that shown in the example
3.
Special instructions
Make sure the input files are in the same folder as your source code! If you don't, you'll be stuck with
entering long pathnames to get to the files.
For instance, if I were working on PA1prog, I
want to put my input file in the PA1prog folder.
Here, the input file is named "pract2.txt".
Local Disk (C:) > VS Projects
> PA1prog
Name
Date modified
Туре
Size
.Vs
9/2/2020 3:22 PM
File folder
Debug
10/18/2020 10:22 AM
File folder
PA1prog.cpp
10/18/2020 10:21 AM
CPP File
1 KB
A PA1prog.sln
A PA1prog.vcxproj
D PA1prog.vcxproj.filters
A PA1prog.vcxproj.user
9/2/2020 3:22 PM
Visual Studio Solu..
2 KB
10/7/2020 7:34 PM
VC++ Project
8 КВ
The reason: if you use only a filename, the
operating system will automatically look in the
folder where your program exists.
10/7/2020 7:34 PM
VC ++ Project Filte...
1 KB
9/2/2020 3:22 PM
Per-User Project 0...
1 KB
pract2.txt
10/18/2020 10:18 AM
Text Document
1 KB
Source.cpp
10/7/2020 4:58 PM
CPP File
4 KB
When you save output to a file using only the filename, the file will be in the same folder as your
program, also.
Question:
Ask the user for the name of the file to get input from. The data is stored in this form:
double
double
double
int
The three doubles represent the sides of a triangle. The fourth number is an integer scale factor. Output
should be to the screen in this form:
The original triangle sides were:
2.870
11.900
10.750
With a scale factor of 2, the new triangle sides are:
5.740
23.800
21.500
Note: 1. I'm including a test file named "pract1.txt"
2. Make sure to test to see if the file actually opened. If not, print an error message and don't
do anything else. If it did open, go ahead with the input, processing, and output.
See Program 5-23 for an example.
3. All values should print out with 3 decimal places
4. The decimal points should line up
Transcribed Image Text:You will be using Visual Studio to create the following programs. Make sure you see that these are separate programs. 1. 2. Make sure that you follow the General Program Format Rules for each program The closer the form of your output matches that shown in the example 3. Special instructions Make sure the input files are in the same folder as your source code! If you don't, you'll be stuck with entering long pathnames to get to the files. For instance, if I were working on PA1prog, I want to put my input file in the PA1prog folder. Here, the input file is named "pract2.txt". Local Disk (C:) > VS Projects > PA1prog Name Date modified Туре Size .Vs 9/2/2020 3:22 PM File folder Debug 10/18/2020 10:22 AM File folder PA1prog.cpp 10/18/2020 10:21 AM CPP File 1 KB A PA1prog.sln A PA1prog.vcxproj D PA1prog.vcxproj.filters A PA1prog.vcxproj.user 9/2/2020 3:22 PM Visual Studio Solu.. 2 KB 10/7/2020 7:34 PM VC++ Project 8 КВ The reason: if you use only a filename, the operating system will automatically look in the folder where your program exists. 10/7/2020 7:34 PM VC ++ Project Filte... 1 KB 9/2/2020 3:22 PM Per-User Project 0... 1 KB pract2.txt 10/18/2020 10:18 AM Text Document 1 KB Source.cpp 10/7/2020 4:58 PM CPP File 4 KB When you save output to a file using only the filename, the file will be in the same folder as your program, also. Question: Ask the user for the name of the file to get input from. The data is stored in this form: double double double int The three doubles represent the sides of a triangle. The fourth number is an integer scale factor. Output should be to the screen in this form: The original triangle sides were: 2.870 11.900 10.750 With a scale factor of 2, the new triangle sides are: 5.740 23.800 21.500 Note: 1. I'm including a test file named "pract1.txt" 2. Make sure to test to see if the file actually opened. If not, print an error message and don't do anything else. If it did open, go ahead with the input, processing, and output. See Program 5-23 for an example. 3. All values should print out with 3 decimal places 4. The decimal points should line up
General Program Format Rules
Each program should have
1. A heading comment at the top of the program that contains information in this
form:
/*
Programmer
I. Will Ritem
:
Date due
: July 12, 2020
Description : This program will calculate the average
of three integers from the user
*/
A comment above each function (other than main) in this form:
/ *
: getAverage
: 3 integers
: This function will calculate the average
of its three integer parameters
: the average (a double)
Function
Receives
Description
Returns
Preconditions : none
* /
Note: preconditions are what the function is assuming to be true in order to do its job. For instance,
a function that calculates the square root of its parameter can be written one of two ways:
With no preconditions, which means the function itself must check to see if its parameter is not a
negative number, OR
а.
b. Have a precondition that the parameter is non-negative, in which case it's the caller's
responsibility to make sure the parameter is non-negative before calling the function. A
precondition is like a contract in which the function says "Ill do this, but first you're promising my
precondition is met."
3. Variables and constants with descriptive names
"average" instead of "ave", and so on.
– so, "radius" instead of "rad", "area" instead of "ar",
Please don't use global variables unless a program says it's OK. If you don't know what a global
variable is, please learn about them in section 6.10 in the text. Using global constants, on the other
hand, is fine (also in section 6.10).
4.
The order that parts of your program should follow is like this:
Heading comment (#1 above)
b.
а.
#includes section
using namespace std;
d.
C.
global constants (Note: this doesn't say global variables, which aren't allowed)
typedefs and struct declarations
f.
е.
g.
h.
function prototypes
the main () function
other functions, each with its own comment (#2 above)
6.
Please don't "hardcode" array boundaries when using loops, functions, etc. Instead, declare a global
constant (see 5d above) like this:
const int ARRAY SIZE = 25;
then write the loop like this:
for (int x
= 0; x < ARRAY SIZE; x++)
and not like this:
for (int x = 0; x <(25/; x++)
2.
5.
Transcribed Image Text:General Program Format Rules Each program should have 1. A heading comment at the top of the program that contains information in this form: /* Programmer I. Will Ritem : Date due : July 12, 2020 Description : This program will calculate the average of three integers from the user */ A comment above each function (other than main) in this form: / * : getAverage : 3 integers : This function will calculate the average of its three integer parameters : the average (a double) Function Receives Description Returns Preconditions : none * / Note: preconditions are what the function is assuming to be true in order to do its job. For instance, a function that calculates the square root of its parameter can be written one of two ways: With no preconditions, which means the function itself must check to see if its parameter is not a negative number, OR а. b. Have a precondition that the parameter is non-negative, in which case it's the caller's responsibility to make sure the parameter is non-negative before calling the function. A precondition is like a contract in which the function says "Ill do this, but first you're promising my precondition is met." 3. Variables and constants with descriptive names "average" instead of "ave", and so on. – so, "radius" instead of "rad", "area" instead of "ar", Please don't use global variables unless a program says it's OK. If you don't know what a global variable is, please learn about them in section 6.10 in the text. Using global constants, on the other hand, is fine (also in section 6.10). 4. The order that parts of your program should follow is like this: Heading comment (#1 above) b. а. #includes section using namespace std; d. C. global constants (Note: this doesn't say global variables, which aren't allowed) typedefs and struct declarations f. е. g. h. function prototypes the main () function other functions, each with its own comment (#2 above) 6. Please don't "hardcode" array boundaries when using loops, functions, etc. Instead, declare a global constant (see 5d above) like this: const int ARRAY SIZE = 25; then write the loop like this: for (int x = 0; x < ARRAY SIZE; x++) and not like this: for (int x = 0; x <(25/; x++) 2. 5.
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 3 images

Blurred answer
Knowledge Booster
File Input and Output Operations
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
Np Ms Office 365/Excel 2016 I Ntermed
Np Ms Office 365/Excel 2016 I Ntermed
Computer Science
ISBN:
9781337508841
Author:
Carey
Publisher:
Cengage