fork download
  1. using System;
  2.  
  3. namespace ConsoleApplication1
  4. {
  5. class Program
  6. {
  7. static void Main(string[] args)
  8. {
  9. int n=1;
  10. for(int i=n;i<=9;i++)
  11. {
  12. if(i>3=3 && i/3!=0)
  13. {
  14. Console.Write(i);
  15. }
  16. else
  17. {
  18. Console.WriteLine(i);
  19. }
  20. }
  21. }
  22. }
  23. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.cs(12,23): error CS1525: Unexpected symbol `='
prog.cs(16,20): error CS1525: Unexpected symbol `else'
prog.cs(22,5): error CS8025: Parsing error
Compilation failed: 3 error(s), 0 warnings
stdout
Standard output is empty