Write a program that multiplies two 3-digit positive integers (000 – 999) and pr
ID: 3638966 • Letter: W
Question
Write a program that multiplies two 3-digit positive integers (000 – 999) and prints their product in the format below. Your program should ask the user to type the two numbers, and then read them in. Your program should still format the output properly even if the high-order digits of one or both of the numbers are zeros (i.e., 027 or 003 or 000). As an example, the product of 433 and 456 should produce the following output. Notice that the alignment should be the same as you would get if you multiplied the numbers using a pencil and paper (1’s column, 10’s column, 100’s column, etc.).
456
x 433
---------
1368
1368
1824
---------
197448
Explanation / Answer
#include #include #include using namespace std; int main() { int result[3]; int first = 0; // first set of integers int second= 0; // second set of integers int sum = 0; cout first; cout > second; sum = ( first * second ); int scopy=second; for(int i=0;iRelated Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.