1-) C# - Do While Döngüsüusing System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace DoWhileDongusu
{
public partial class Form1 : Form
public Form1()
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
int i = 1; // eğer 10 dan büyük değer girilirse do while döngüsü en az bir kere yazdırır şart sağlanmasa bile.
do
listBox1.Items.Add("merhaba antalya");
i++;
while (i <= 10);