The following question support the attainment of Course Intended Learning Outcomes (CILO):Design computing based solution using control structures, functions, array and other statements INSTRUCTION: Write a program the will let the user to enter a number and display the output based on CHOICES below. ANSWERS: SOURCE CODE (EDIT THE SOURCE CODE BELOW AND PASTE YOUR UPDATED PROGRAM) #include using namespace std; main(){ int num,ctr, trans, sum=0; cout<<" ***** cout<<"\n * Name: ******. cout<<"\n * Section: cout<<"\n cout<<"\n\n Enter a number: ";cin>>num; cout<< "In Transaction"; cout<<"\n 1.Display ascending order from 1 to "<< num << " using do while"; cout<<"\n 2.Display ascending order from 1 to " << num << " using while"; cout<<"In 3.Display descending order from " << num << " to 1 using while"; cout<<"\n 4.Display descending order from " << num <<" to 1 using do while"; cout<<"In 5.Display all numbers divisible by 3 from 1 to"< num << " using do while"; cout<<"\n 6.Display all numbers divisible by 8 from 1 to "<< num << " using while"; cout<<"In 7.Display the sum of 1 to " << num <<" using do while"; cout<<"\n 8.Display the product of 1 to "<< num <<" using while"; do{ cout<"In\n Enter transaction: "; cin>>trans; switch(trans) { case 1: ctr=1; do{ cout<

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question

<3

case 2: ctr=1;
while(ctr<=num)
{ cout<<ctr <<" ";
ctr++;
} break;
case 3: break;
case 4: break;
case 5: break;
case 6: break;
case 7: ctr=1;
do{ sum=sum+ctr;
ctr++;
}while(ctr<=num);
cout<< "The sum is "<<sum; break;
case 8: break;
default: cout<< "Invalid"; } //end of switch
} while(trans<=8); Il end of do while
} llend of main
O C\Users\TIPQC\Documents JACITE001_1STSEMSY2019\Program C++\MidtermLAbWhileDowhile exe
Enter a number: 10
Transaction
1.Display ascending order from 1 to 10 using do while
2.Display ascending order from 1 to 10 using while
3.Display descending order from 10 to 1 using while
4.Display descending order from 10 to 1 using do while
5.Display all numbers divisible by 3 from 1 to 10 using do while
6.Display all numbers divisible by 8 from 1 to 10 using while
7.Display the sum of 1 to 10 using do while
8.Display the product of 1 to 10 using while
Enter transaction: 1
1 2 3 4 5 6 7 8 9 10
Enter transaction: 2
1 2 3 4 5 6 7 8 9 10
Enter transaction: 7
The sum is 55
Enter transaction:
SOURCE CODE:
OUTPUT ( SCREEN SHOT all output from case 1 to 8)
Transcribed Image Text:case 2: ctr=1; while(ctr<=num) { cout<<ctr <<" "; ctr++; } break; case 3: break; case 4: break; case 5: break; case 6: break; case 7: ctr=1; do{ sum=sum+ctr; ctr++; }while(ctr<=num); cout<< "The sum is "<<sum; break; case 8: break; default: cout<< "Invalid"; } //end of switch } while(trans<=8); Il end of do while } llend of main O C\Users\TIPQC\Documents JACITE001_1STSEMSY2019\Program C++\MidtermLAbWhileDowhile exe Enter a number: 10 Transaction 1.Display ascending order from 1 to 10 using do while 2.Display ascending order from 1 to 10 using while 3.Display descending order from 10 to 1 using while 4.Display descending order from 10 to 1 using do while 5.Display all numbers divisible by 3 from 1 to 10 using do while 6.Display all numbers divisible by 8 from 1 to 10 using while 7.Display the sum of 1 to 10 using do while 8.Display the product of 1 to 10 using while Enter transaction: 1 1 2 3 4 5 6 7 8 9 10 Enter transaction: 2 1 2 3 4 5 6 7 8 9 10 Enter transaction: 7 The sum is 55 Enter transaction: SOURCE CODE: OUTPUT ( SCREEN SHOT all output from case 1 to 8)
The following question support the attainment of Course Intended Learning Outcomes (CILO):Design
computing based solution using control structures, functions, array and other statements
INSTRUCTION: Write a program the will let the user to enter a number and display the output based on
CHOICES below.
ANSWERS: SOURCE CODE ( EDIT THE SOURCE CODE BELOW AND PASTE YOUR UPDATED PROGRAM)
#include<iostream>
using namespace std;
main(){
int num,ctr, trans, sum=0;
*********II.
cout<<" ***
cout<<"\n * Name:
*II.
cout<<"\n * Section:
cout<<"\n **********
cout<<"\n\n Enter a number: ";cin>>num;
cout<< "In Transaction";
cout<<"\n 1.Display ascending order from 1 to " << num << " using do while";
cout<<"\n 2.Display ascending order from 1 to " << num << " using while";
cout<<"\n 3.Display descending order from "<< num << " to 1 using while";
cout<<"\n 4.Display descending order from "<< num << " to 1 using do while";
cout<<"\n 5.Display all numbers divisible by 3 from 1 to "<< num << "using do while";
cout<<"\n 6.Display all numbers divisible by 8 from 1 to "<< num << " using while";
cout<<"\n 7.Display the sum of 1 to "<< num <<" using do while";
cout<<"\n 8.Display the product of 1 to " << num <<" using while";
do{
cout<<"\n\n Enter transaction: ";
cin>>trans;
switch(trans)
{ case 1: ctr=1;
do{ cout<<ctr <<"
ctr++;
}while(ctr<=num); break;
Transcribed Image Text:The following question support the attainment of Course Intended Learning Outcomes (CILO):Design computing based solution using control structures, functions, array and other statements INSTRUCTION: Write a program the will let the user to enter a number and display the output based on CHOICES below. ANSWERS: SOURCE CODE ( EDIT THE SOURCE CODE BELOW AND PASTE YOUR UPDATED PROGRAM) #include<iostream> using namespace std; main(){ int num,ctr, trans, sum=0; *********II. cout<<" *** cout<<"\n * Name: *II. cout<<"\n * Section: cout<<"\n ********** cout<<"\n\n Enter a number: ";cin>>num; cout<< "In Transaction"; cout<<"\n 1.Display ascending order from 1 to " << num << " using do while"; cout<<"\n 2.Display ascending order from 1 to " << num << " using while"; cout<<"\n 3.Display descending order from "<< num << " to 1 using while"; cout<<"\n 4.Display descending order from "<< num << " to 1 using do while"; cout<<"\n 5.Display all numbers divisible by 3 from 1 to "<< num << "using do while"; cout<<"\n 6.Display all numbers divisible by 8 from 1 to "<< num << " using while"; cout<<"\n 7.Display the sum of 1 to "<< num <<" using do while"; cout<<"\n 8.Display the product of 1 to " << num <<" using while"; do{ cout<<"\n\n Enter transaction: "; cin>>trans; switch(trans) { case 1: ctr=1; do{ cout<<ctr <<" ctr++; }while(ctr<=num); break;
Expert Solution
steps

Step by step

Solved in 3 steps with 2 images

Blurred answer
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY