write a programme to input a number and check it nelson or not
1
Expert's answer
2012-09-21T11:49:46-0400
using System; using System.Collections.Generic; using System.Linq; using System.Text;
namespace nelson { class Program { & static void Main(string[] args) & { Console.WriteLine("Enter number"); int nelsonOrNo = int.Parse(Console.ReadLine());
Comments
Leave a comment