fork download
  1. public void LuuMangPhanSo(string filepath){
  2. Streamwriter writer = new Streamwriter();
  3. console.writeLine("Nhap vao so luong phan so");
  4. int N = int.Parse(console.readline());
  5. PHANSO ps = new PHANSO();
  6. for(int i = 0; i<N;i++){
  7. ps.Luu(writer);
  8. }
  9. writer.Close();
  10. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.cs(1,7): error CS1525: Unexpected symbol `void', expecting `class', `delegate', `enum', `interface', `partial', `ref', or `struct'
Compilation failed: 1 error(s), 0 warnings
stdout
Standard output is empty