fork download
  1. using static System.Console;
  2.  
  3. public class Program {
  4. public static void Main() {
  5. int soma = 7;
  6. int cont = 2;
  7. double media = (double)soma / (double)cont;
  8. WriteLine(media);
  9. }
  10. }
  11.  
  12. //https://pt.stackoverflow.com/q/219227/101
Success #stdin #stdout 0.02s 16280KB
stdin
Standard input is empty
stdout
3.5