Kullanıcı serverIR Oluşturulma : 26 Nisan, 2022 Kullanıcı #1 Paylaş Oluşturulma : 26 Nisan, 2022 (güncelleme yapıldı) Bu örnekte ASP.NET ile kullanıcının girdiği iki sayı arasındaki asal sayıları bularak listeleme işlemi gerçekleştireceğiz. Örneğimizde kullanıcıdan sayıları almak için iki adet Textbox kontrolü ve bulunan asal sayıları listelemek için bir adet listBox kontrolü ekleyeceğiz. Listeleme işlemini web formumuza eklediğimiz Button kontrolü ile gerçekleştireceğiz. Örneğimize ait tasarım kısmı aşağıdaki gibi olacaktır. Form tasarımı ve button kontrolüne ait kodlar ile ekran çıktısı ise aşağıdaki gibi oluşacaktır. <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="WebApplication3.WebForm1" %> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title></title> <style> body{ color:aliceblue; } table{ background-color:#ff6a00; } </style> </head> <body> <form id="form1" runat="server"> <div> <table border="0" style="width: 350px" class="tablo"> <tr> <td colspan="2">ASAL SAYILARI BULMA</td> </tr> <tr> <td class="auto-style4">İlk Sayı</td> <td aria-autocomplete="inline" class="auto-style11"> <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox> </td> </tr> <tr> <td class="auto-style4">Son Sayı</td> <td aria-autocomplete="inline" class="auto-style11"> <asp:TextBox ID="TextBox2" runat="server"></asp:TextBox> </td> </tr> <tr> <td class="auto-style4"> </td> <td aria-autocomplete="inline" class="auto-style9"> <asp:Button ID="Button1" runat="server" OnClick="Button1_Click" Text="Asal Olanları Bul" /> </td> </tr> <tr> <td class="auto-style4">İki Sayı Arasında Bulunan Asal Sayılar</td> <td aria-autocomplete="inline" class="auto-style9"> <asp:ListBox ID="ListBox1" runat="server" Height="186px" Width="149px"></asp:ListBox> <br /> </td> </tr> <tr> <td class="auto-style4" colspan="2"> <asp:Label ID="Label1" runat="server" Text="Label"></asp:Label> </td> </tr> </table> </div> </form> </body> </html> .cs dosyamız: using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; namespace WebApplication3 { public partial class WebForm1 : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { } protected void Button1_Click(object sender, EventArgs e) { ListBox1.Items.Clear(); int ilksayi = Convert.ToInt32(TextBox1.Text); int sonsayi = Convert.ToInt32(TextBox2.Text); int sayi = ilksayi; bool durum = true; while (sayi < sonsayi) { sayi++; for (int i = 2; i < sayi; i++) { if (sayi % i == 0) { durum = false; } } if (durum == true && sayi != 1) { ListBox1.Items.Add(sayi.ToString()); } durum = true; } //www.yazilimkodlama.com Label1.Text = "İki Sayı Arasında " + ListBox1.Items.Count.ToString() + " Tane Asal Sayı Var"; } } } Ekran Çıktısı: 26 Nisan, 2022 serverIR tarafından düzenlendi Alıntı ---------------------------------------------------------------------------- Yorum bağlantısı Şimdi Paylaş Daha fazla paylaşma seçeneği...