Logo 
Search:

C++ Programming Articles

Submit Article
Home » Articles » C++ Programming » BeginnersRSS Feeds

Program for displaying data in tabular format

Posted By: Easy Tutor     Category: C++ Programming     Views: 17778

Program for displaying data in tabular format.

Exampel:
A criket team has the following table of batting figures for a series of test matches:
-----------------------------------------------------------------
Player's Name Runs Innings Times not out
-------------------------------------------------------
venkat 632 15 0
prasanna 514 14 3
Gavaskar 675 17 2
. . . .
. . . .
-------------------------------------------------------
Write a program to read the figures set out in the above form, to calculate the batting averages and to print out the complete table including the averages.

Code for Program for displaying data in tabular format in C++ Programming

/*www.DailyFreeCode.comDownload Projects, Sourcecodes, Tips and Tricks, Interview FAQs, Hotlinks and more....Logon to www.DailyFreeCode.com*//*A criket team has the following table of batting figures for aseries of test matches:-----------------------------------------------------------------    Player's Name        Runs        Innings        Times not out-----------------------------------------------------------------    venkat                632            15                0   prasanna                514            14                3   Gavaskar                675            17                2       .                     .                 .                .      .                     .                 .                .------------------------------------------------------------------Write a program to read the figures set out in the above form, to calculatethe batting averages and to print out the complete table including the averages.*/

#include <iostream.h>
#include <iomanip.h>
#include <conio.h>
void main()
{
void line();
void star();

int runs,innings;
float avg;
cout<<"\nEnter 5 records including following details\n";
cout<<"1)    Player's Name\n";
cout<<"2)    Runs\n";
cout<<"3)    Innings\n";
cout<<"4)     Times Not out\n\n";

struct cricketer
{
char name[15];
int runs;
int innings;
int tno;
float avg;
}rec[5];

for(int i=0;i<5;i++)
{
cout<<"\nEnter Player Name:-";
cin>>rec[i].name;
cout<<"Enter Runs:-";
cin>>rec[i].runs;
cout<<"Enter Innings:-";
cin>>rec[i].innings;
cout<<"Enter Time not out:-";
cin>>rec[i].tno;
rec[i].avg = float(rec[i].runs)/rec[i].innings;
}


clrscr();
cout<<"\n\n\n";
cout<<setw(49)<<"CRICKETER'S  TABLE\n";
line();
cout<<setw(15)<<"Player's Name"<<setw(15)<<"Runs"<<setw(15)<<"Innings"
     <<setw(20)<<"Times not out"<<setw(12)<<"Average\n";
line();
for(int i=0;i<5;i++)
{
cout<<setw(15)<<rec[i].name<<setw(15)<<rec[i].runs<<setw(12)<<rec[i].innings
     <<setw(18)<<rec[i].tno<<setw(16)<<rec[i].avg<<endl;
}
line();
cout<<endl<<endl<<endl;
star();
cout<<setw(43)<<"Finish\n";
star();
getch();
}



//======================line=====================\\void line()
    {
            for(int i=1;i<41;i++)
          cout<<"--";

     cout<<"\n";
   }



//======================star======================\\void star()
    {
            for(int i=1;i<41;i++)
          cout<<"**";

     cout<<"\n";
   }
  
Share: 


Didn't find what you were looking for? Find more on Program for displaying data in tabular format Or get search suggestion and latest updates.

Easy Tutor
Easy Tutor author of Program for displaying data in tabular format is from United States. Easy Tutor says

Hello Friends,

I am Free Lance Tutor, who helped student in completing their homework.

I have 4 Years of hands on experience on helping student in completing their homework. I also guide them in doing their final year projects.

I have share many programs on this website for everyone to use freely, if you need further assistance, than please contact me on easytutor.2ya [at the rate] gmail [dot] com

I have special discount scheme for providing tutor services. I am providing tutor service to students from various contries, currently most of my students are from United States, India, Australia, Pakistan, Germany, UK and Canada.

I am also here to expand my technical network to receive more opportunity in my career, make friends to help them in resolving their technical problem, learn and share my knowledge, If you like to be my friend, Please send me friend request.

Thanks,
Happy Programming :)

 
View All Articles

 
Please enter your Comment

  • Comment should be atleast 30 Characters.
  • Please put code inside [Code] your code [/Code].

 
No Comment Found, Be the First to post comment!