fork(1) download
  1. using static System.Console;
  2.  
  3. public class Program {
  4. public static void Main() {
  5. string[,] operacoes = {
  6. { "SOMA", "x", "" },
  7. { "SUBTRAÇÃO", "x", "" },
  8. { "MULTIPLICAÇÃO", "x", "" },
  9. { "DIVISÃO", "x", "" }
  10. };
  11. for (var i = 0; i < operacoes.GetLength(0); i++) WriteLine(operacoes[i, 0]);
  12. }
  13. }
  14.  
  15. //https://pt.stackoverflow.com/q/396160/101
Success #stdin #stdout 0s 131520KB
stdin
Standard input is empty
stdout
SOMA
SUBTRAÇÃO
MULTIPLICAÇÃO
DIVISÃO