01/10/2018, 14:05

In kí tự " " ra file

Hi mọi người !
Em muốn in kí tự ra màn hình hoặc ra file thì làm sao ạ ?
VD : trong file txt hiển thị là: 1 2 3 .
Em sử dụng :

#include <iostream>
#include <fstream>
using namespace std;

int main () {
  ofstream file;
  file.open ("codebind.txt");
  file << "1
2
3
";
  file.close();
  return 0;
} 

Em viết vậy nó toàn xuống dòng . Anh chị nào có cao kiến giúp em với.
Em cảm ơn nhiều

HK boy viết 16:15 ngày 01/10/2018

Lười.

cout << "\\" << "n" << endl;

Tinh khôn hơn 1 tí:

cout << "1\\n\\n2\\n3" << endl;
Tuấn UIT viết 16:20 ngày 01/10/2018

Em cảm ơn nhiều

Trần Hoàn viết 16:06 ngày 01/10/2018

Để in ra ký tự '\', ta dùng "\\"

Bài liên quan
0