Break Kullanımı
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BreakandContinue
{
class Program
{
static void Main(string[] args)
{
for(int i=0;i<=10;i++)
{
Console.WriteLine(i);
{
if(i==7)
{
break;
}
}
}
Console.ReadLine();
}
}
}
Ekran Çıktısı:
1
2
3
4
5
6
7
Continue Kullanımı
using System;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BreakandContinue
{
class Program
{
static void Main(string[] args)
{
for(int i=0;i<=10;i++)
{
{
if(i==7)
{
continue;
}
Console.WriteLine(i);
}
}
Console.ReadLine();
}
}
}
Ekran Çıktısı:0
1
2
3
4
5
6
8
9
10
Yorum Gönder