Answer to Question #288746 in C++ for Ace

Question #288746

1. Using goto statement, write a C++ program to display the number of terms of even natural number and their sum.



2. Using goto statement, write a C++ program that will ask the user for an integer and number of rows. Print out that integer’s multiplication table.

1
Expert's answer
2022-01-19T12:56:18-0500
#include <iostream>
using namespace std;
int main()
{
    int n,i,sum=0;
    cout << "\n\n Display n terms of natural number and their sum:\n";
    cout << "---------------------------------------\n";
	cout << " Input a number of terms: ";
	cin>> n;		
    cout << " The natural numbers upto "<<n<<"th terms are: \n";
    for (i = 1; i <= n; i++) 
    {
        cout << i << " ";
		sum=sum+i;
    }
     cout << "\n The sum of the natural numbers is: "<<sum << endl;
}

#include <iostream>
using namespace std;
 
int main()
{
    int n = 5;  // Change here to change output
    for (int i = 1; i <= 10; ++i)
        cout << n << " * " << i << " = " 
             << n * i << endl;
    
    return 0;
}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog