Display students details in the following format using manipulats
Rollno Name Marks average
------ --- ---- -------
1 Ram 490 98.17
2 Kala 450 96.23
#include <iostream>
using namespace std;
int main()
{
cout<<"Rollno \t Name \t Marks \t Average"<<endl;
cout<<"1\t Ram \t 490 \t 98.17"<<endl;
cout<<"2\t Kala \t 450 \t 96.23"<<endl;
return 0;
}
Comments
Leave a comment