fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. using System;
  5. using System.IO;
  6. using System.Security.Cryptography;
  7. using System.Text;
  8.  
  9. int main() {
  10. // your code goes here
  11. cout<<"test";
  12. return 0;
  13. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.cpp:4:11: error: expected nested-name-specifier before 'System'
     using System;
           ^
prog.cpp:5:11: error: expected nested-name-specifier before 'System'
     using System.IO;
           ^
prog.cpp:6:11: error: expected nested-name-specifier before 'System'
     using System.Security.Cryptography;
           ^
prog.cpp:7:11: error: expected nested-name-specifier before 'System'
     using System.Text;
           ^
stdout
Standard output is empty