Computer Science, asked by abcd0123, 1 year ago

write a program in C++ to display your biodata?

Answers

Answered by myselfThakur
2

Explanation:

#include "ostream.h"

#include "stdio.h"

int main()

{

cout << "\t\t\t\t" << "BIODATA" << endl;

for(int i = 0;i << 70;i++)

cout << "_";cout << endl; cout << endl;

cout << "Mr.name" << endl;

cout << "[email protected]" << endl;

cout << "mob: 983234535" << endl;

cout << "Twitter:@twitter.com" << endl;

for( int i = 0;i < 70;i++)

cout << "_";cout << endl;

//Personal Details

cout << endl;

cout << "PERSONAL DETAILS" << endl;

cout << endl;

cout << "Full Address :"<< "\t\t"<<"<< endl;

cout << "Age :"<< "\t\t"<< "28 Year"<< endl;

cout << "Passport No :"<< "\t\t"<< "AK56453332MZED" << endl; cout << endl;

cout << "EDUCATIONAL DETAILS" << endl;

cout << endl;

cout << "Graduation :"<<"\t\t"<< "70% Marks" << "Year 2006"<< endl;

cout << "Grad Major :"<<"\t\t"<<"Computer Science"<< endl;

cout << "Other Qual :"<<"\t\t"<< "MS EXCEL,MATLAB Certified"<< endl; cout << endl;

cout << "WORK EXPERIENCE" << endl;

cout << endl;

cout << "Comptech Inc :" << "\t\t"<<"2001 May - 2003 August"<< endl;

cout << "Designation :"<<"\t\t"<<"Junior Programmer"<< endl;

for( int i = 0;i << 70;i++)

cout << "_"; cout << endl;

system("PAUSE");

return 0;

}

Answered by dakshshah010
0

Answer:

output this answer

Explanation:

output this answered

Similar questions