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<< "\n 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;

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
Need help in c++
do{ cout<<ctr <<" ";
ctr++;
}while(ctr<=num); break;
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); // end of do while
}//end of main
CAhen OCDecumentJACVTED_ISTSEMSYa
MitermLAWhileDowhile.or
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 1e using do while
8.Display the product of 1 to 10 using while
Enter transaction: 1
123 4 5 67 89 10
Enter transaction: 2
1234 56 7 89 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:do{ cout<<ctr <<" "; ctr++; }while(ctr<=num); break; 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); // end of do while }//end of main CAhen OCDecumentJACVTED_ISTSEMSYa MitermLAWhileDowhile.or 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 1e using do while 8.Display the product of 1 to 10 using while Enter transaction: 1 123 4 5 67 89 10 Enter transaction: 2 1234 56 7 89 10 Enter transaction: 7 The sum is 55 Enter transaction: SOURCE CODE: OUTPUT ( SCREEN SHOT all output from case 1 to 8)
PROGRAM/SECTION:
ASSESSMENT TASK: Iterative or Repetition Control Structure using switch, while and
do while loop
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;
coutss" *****************************************".
cout<<"\n * Name:
cout<<"\n * Section:
**************************"
cout<<"\n ***********
cout<<"\n\n Enter a number: ";cin>>num;
cout<< "\n 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;
Transcribed Image Text:PROGRAM/SECTION: ASSESSMENT TASK: Iterative or Repetition Control Structure using switch, while and do while loop 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; coutss" *****************************************". cout<<"\n * Name: cout<<"\n * Section: **************************" cout<<"\n *********** cout<<"\n\n Enter a number: ";cin>>num; cout<< "\n 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;
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 1 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