[ create a new paste ] login | about

Link: http://codepad.org/tzkMBVyX    [ raw code | output | fork ]

C++, pasted on Apr 24:
1
2
3
4
5
6
7
8
int n;
	cout << "Nhap so luong quyen sach: ";
	cin >> n;
	Sach *a=new Sach[n];
	
	NhapMangSach(a, n);
	cout << "\nDanh sach cac quyen sach da nhap: " << endl;
	XuatMangSach(a, n);


Output:
1
2
Line 2: error: expected constructor, destructor, or type conversion before '<<' token
compilation terminated due to -Wfatal-errors.


Create a new paste based on this one


Comments: