using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication54
{
class Program
{
static void Main(string[] args)
{
for (double i = 1; i <=1000 ; i++)
{
if (Math.Sqrt(i).ToString().Length==2|| Math.Sqrt(i).ToString().Length==1)
{
Console.WriteLine("{0} sayısının karekökü {1}",i,Math.Sqrt(i));
}
}
}
}
}
0 Yorumlar