fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. Console.WriteLine("The C# Subtract/Multiply Program.");
  8. int a = 100;
  9. int b = 50;
  10. int c = (a - b);
  11. Console.WriteLine("A "+ a + " B "+ b + " C "+c);
  12. int d = 2500;
  13. int e = 50;
  14. int f = (d / e);
  15. Console.WriteLine("D " + d + " E " + e + " F " + f);
  16. }
  17. }
Success #stdin #stdout 0.02s 24100KB
stdin
1
2
10
42
11
stdout
The C# Subtract/Multiply Program.
A 100 B 50 C 50
D 2500 E 50 F 50