- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
using System;
namespace IPGuard
{
class Program
{
public static void Main(string[] args)
{
System.Net.IPAddress IPAdress = null;
System.Net.NetworkInformation.Ping Ping = null;
for (int IP1 = 1; IP1 < 255; IP1++)
{
for (int IP2 = 0; IP2 < 255; IP2++)
{
for (int IP3 = 0; IP3 < 255; IP3++)
{
for (int IP4 = 0; IP4 < 255; IP4++)
{
IPAdress = System.Net.IPAddress.Parse(Convert.ToString(IP1) + "." + Convert.ToString(IP2) + "." + Convert.ToString(IP3) + "." + Convert.ToString(IP4));
Ping = new System.Net.NetworkInformation.Ping();
if (Ping.Send(IPAdress).Status == System.Net.NetworkInformation.IPStatus.Success)
{
Console.WriteLine(IPAdress);
}
}
}
}
}
}
}
}
Lure Of Chaos 07.04.2012 09:15 # −2
четырьмя вложенными циклами?
KusokGovna 07.04.2012 10:21 # −2
absolut 07.04.2012 16:18 # +1
lucidfoxGovno 07.04.2012 09:38 # 0
eth0 07.04.2012 09:53 # +2
rat4 07.04.2012 10:37 # 0
rat4 07.04.2012 10:39 # +3
govnomonad 07.04.2012 11:13 # +2
govnomonad 07.04.2012 11:14 # 0
abatishchev 07.04.2012 11:43 # +2
KusokGovna 07.04.2012 11:45 # 0
guest 07.04.2012 12:16 # 0
KusokGovna 07.04.2012 12:21 # −6
Irdis 07.04.2012 12:54 # +1
FAKYOUINTIRNEAT 09.04.2012 18:31 # −5
Говногость 07.04.2012 16:24 # +5
eth0 07.04.2012 16:39 # +2
absolut 07.04.2012 17:12 # 0
dwinner 16.04.2012 21:18 # +2
KusokGovna 17.04.2012 01:40 # 0
guest8 09.04.2019 13:03 # −999