fork download
  1. using static System.Console;
  2. using static System.Math;
  3. using static System.Convert;
  4. using static System.DateTime;
  5.  
  6. public class Program {
  7. public static void Main() {
  8. WriteLine(Round(ToDouble("123.45")));
  9. WriteLine(Now);
  10. }
  11. }
  12.  
  13. //https://pt.stackoverflow.com/q/135423/101
Success #stdin #stdout 0.04s 18124KB
stdin
Standard input is empty
stdout
123
10/29/2020 11:36:06 AM