Answer to Question #273059 in C++ for kristel

Question #273059

10-in-1


by CodeChum Admin



Troy who is in his 1st grade and is having a hard time learning how to count numbers from 0 – 50. He asked his brother Gabriel to teach him how to count, but he requested to do teach it 10 numbers per line. His brother don't know how to teach his brother so he looking for a friend who can help him. Can you help Gabriel to do a program that can teach Troy to count numbers by printing it 10 numbers per line? If the numbers exceed or is equal to 50, the output should display "Number must be below 50!".



Input



1. Size of Numbers



Description



The size of the numbers.



Constraints



The value is guaranteed to be a positive integer.



Sample



17


Output



The first line will contain a message prompt to input the size.


The succeeding lines will contain the numbers or the message required if the number is greater than 50.



Enter·size:·17


0·1·2·3·4·5·6·7·8·9


10·11·12·13·14·15·16

1
Expert's answer
2021-11-29T06:52:22-0500
#include <iostream>
#include <iomanip>
using namespace std;


int main()
{
    int num,row=10;
    cout << "Enter the number we should print upto" << endl;
    cin>>num;
    cout<<"The size: "<<num<<endl;
    if(0<num &&num<=50){
        for(int i=0;i<=num;i++){
                if((i%row)==9){
                        cout<<"\n";}
            cout<<setw(3)<<i;


    }}else{
    cout<<"The number is greater than 50"<<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
APPROVED BY CLIENTS