96
Объяснение:
using System;
namespace s
{
class Program
static void Main()
int i = 0;
int j = 0;
while (i < 100)
if ((i % 2)!= 0 || (i % 13) != 0 )
j++;
}
else
j = j + 0;
i++;
Console.WriteLine(j);
Console.ReadLine();
96
Объяснение:
using System;
namespace s
{
class Program
{
static void Main()
{
int i = 0;
int j = 0;
while (i < 100)
{
if ((i % 2)!= 0 || (i % 13) != 0 )
{
j++;
}
else
{
j = j + 0;
}
i++;
}
Console.WriteLine(j);
Console.ReadLine();
}
}
}