Continue
Sobirjonov O'tkirbek
using System;
namespace MyApplication
{
class Program
{
static void Main(string[] args)
{
for (int i = 0; i < 10; i++)
{
if (i %2 == 0) continue;
else Console.WriteLine(i);
}
}
}
}using System;
namespace MyApplication
{
class Program
{
static void Main(string[] args)
{
for (int i = 0; i < 10; i++)
{
if (i == 8) continue;
else Console.Write(i + “ “);
}
}
}
}Last updated
Was this helpful?