language: VB.NET (mono-2.4.2.3)
date: 111 days 9 hours ago
link:
visibility: public
1
2
3
4
5
6
7
8
9
10
11
12
 
 
Module Module1
Sub Main( )
Dim x, y, z As Integer
x = 11 \ 2
y = 11 / 2
z = 11 Mod 2
Console.WriteLine ( " { 0 } { 1 } { 2 }", x, y, z )
End Sub
End Module
 
  • upload with new input
  • result: Runtime error     time: 0.08s    memory: 16136 kB     signal: -1

    Sub Main( )
    Dim x, y, z As Integer
    x = 11 \ 2
    y = 11 / 2
    z = 11 Mod 2
    Console.WriteLine ( " { 0 } { 1 } { 2 }", x, y, z )
    End Sub
    
    Unhandled Exception: System.FormatException: Input string was not in a correct format.
      at System.String.ParseFormatSpecifier (System.String str, System.Int32& ptr, System.Int32& n, System.Int32& width, System.Boolean& left_align, System.String& format) [0x00000] 
      at System.String.FormatHelper (System.Text.StringBuilder result, IFormatProvider provider, System.String format, System.Object[] args) [0x00000] 
      at System.String.Format (IFormatProvider provider, System.String format, System.Object[] args) [0x00000] 
      at System.String.Format (System.String format, System.Object arg0, System.Object arg1, System.Object arg2) [0x00000] 
      at System.IO.TextWriter.Write (System.String format, System.Object arg0, System.Object arg1, System.Object arg2) [0x00000] 
      at System.IO.TextWriter.WriteLine (System.String format, System.Object arg0, System.Object arg1, System.Object arg2) [0x00000] 
      at System.IO.SynchronizedWriter.WriteLine (System.String format, System.Object arg0, System.Object arg1, System.Object arg2) [0x00000] 
      at System.Console.WriteLine (System.String format, System.Object arg0, System.Object arg1, System.Object arg2) [0x00000] 
      at Module1.Main () [0x00000]