1 2 3 4 5 6 7 8 9 10 11 | using System; class Program { public static void Main() { int a = 200,b; int c = a-(b=100); } } |
dXNpbmcgU3lzdGVtOwoKY2xhc3MgUHJvZ3JhbQp7CnB1YmxpYyBzdGF0aWMgdm9pZCBNYWluKCkKIHsKICBpbnQgYSA9IDIwMCxiOwogIGludCBjID0gYS0oYj0xMDApOwogfQp9Cg==
prog.cs(8,7): warning CS0219: The variable `c' is assigned but its value is never used prog.cs(7,15): warning CS0219: The variable `b' is assigned but its value is never used Compilation succeeded - 2 warning(s)
-
upload with new input
-
result: Success time: 0.01s memory: 36576 kB returned value: 0


