+ 2
What will be output
using System; public class Program { public static void Main(string[] args) { Console.WriteLine(Math.Round(6.5)); Console.WriteLine(Math.Round(11.5)); } } a) 6 12 b) 6 11 c) 7 12 d) 7 11
3 Answers
+ 6
c) 7 12
+ 3
it's 6 12
+ 1
Can you explain how ?