Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

exe: from introduction to programming with c++ second edition Y.Daniel Liang Pro

ID: 3632284 • Letter: E

Question

exe: from introduction to programming with c++ second edition
Y.Daniel Liang



Programming assignment 4.3

Page 146, Conversion from kilograms to pounds.

You should use a loop for this program.

Note that the conversion should be done from 1 to 199 kg, counting by two. You should include a system("pause"); every 20 rows so that all of the information doesn't just run off the screen.

Submit the flowchart/pseudocode plus the .cpp file here.
Exo:4.3
(conversion from kilograms to pounds) write a program that displays the following table (note that 1 kilogram is 2.2 pounds):
kilograms pounds
1 2.2
3 6.6
...
197 433.4
199 437.8

Explanation / Answer

#include using namespace std; int main() { cout