วันพฤหัสบดีที่ 15 ตุลาคม พ.ศ. 2552

DTS 10 08/09/2009

iostream

#include

#include

using namespace std;



int main()

{

char FirstName[30], LastName[30];

int Age;

char FileName[20];



cout << "Enter First Name: ";

cin >> FirstName;

cout << "Enter Last Name: ";

cin >> LastName;

cout << "Enter Age: ";

cin >> Age;



cout << "\nEnter the name of the file you want to create: ";

cin >> FileName;

ofstream Students(FileName, ios::out);

Students << FirstName << "\n" << LastName << "\n" << Age;



cout << "\n\n";

return 0;

}

ไม่มีความคิดเห็น:

แสดงความคิดเห็น