Wednesday, 16 November 2016

Write a program to display the format by using while loop.


Write a program to display the format by using while loop.
Solution : 

      
        #include <iostream.h>
        #include <conio.h>
        #include<iomanip.h> 


        int main ()
        {
              clrscr();
              int i , sum = 0 ; 
              cout<< "- - - - - - - - - - " << endl 
              cout<< "num                      sum"<< endl 
              cout<<  "- - - - - - - - - - " << endl ;

              i ;

              while  (i 5)

             {
                     cout<< i+1 << setw(9<< sum<<endl ;
                     i++ ;
            }

            cout<< "- - - - - - - - - - " << endl ;
            return 0;      
       }

           

No comments:

Post a Comment

If you have any doubt please let me know

Methods in JAVA Language

 In general, a way may be thanks to perform some task. Similarly, the tactic in Java may be a collection of instructions that performs a sel...