Blogfa - kwpti30sharp.blogfa.com - دل نوشت
General Information:
Latest News:
چک کردن عدد اول 15 Jun 2009 | 02:26 am
public int CheckPrime(int num) { bool isPrimeNumber = true; int check = (int)Math.Sqrt((double)(num)); for (int i = 2; i <= check; i++) { if (num % i == 0) { isPrimeNumber = false; break; } } if (i...
دعای داریوش کبیر در تخت جمشید 2 Jun 2009 | 03:57 am
خداوندا این کشور را از دشمن ، از خشکسالی ، از دروغ محفوظ دارد .
حل معادله درجه دو 16 May 2009 | 07:33 pm
using System; using System.Collections.Generic; using System.Text; namespace moadele2 { class Program { static void Main(string[] args) { double a,b,c,delta; Console.Write("Enter Number a: "); a...
- n معادله n مجهول - آقای اسمی زاده 8 Feb 2009 | 12:59 am
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace NmodelehNmjhol { class process { private int n; private double[] mj; // array majholat private double[,...
جمع اعداد بزرگ - آقای چینی ساز 8 Feb 2009 | 12:57 am
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Calculator { class Program { static void Main(string[] args) { int n; Console.Write(" Enter length Numb...
صف حلقوی 8 Feb 2009 | 12:53 am
// ادامه برنامه ها در ادامه مطلب می باشد //باشد null نوع جدید داده است که علاوه بر اعداد صحیح می تواند int? using System; using System.Collections.Generic; using System.Text; namespace Queue_app {...
libarary in c#2008 5 Feb 2009 | 04:45 am
using System; using System.Collections.Generic; using System.Text; namespace Lib_Book { class Person { private static int nextid=1; private int id; private string fname; private string lname; privat...
دفترچه تلفن (C#2008_LINQ) 3 Feb 2009 | 09:33 am
// c#2008 LINQ using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace phonebook2008linq { public class Phone { private static int nextid = 1; public string ...
کلاس تقویم فارسی 22 Jan 2009 | 01:46 am
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Persiandateclass { class PersianDate { private int year; // any year private int month; // 1-12 priv...
دفترچه تلفن با #c 22 Jan 2009 | 01:17 am
//class Phoneusing System; using System.Collections.Generic; using System.Linq; using System.Text; namespace phonebook118 { class Phone { private static int nextid=1; private int id; private string ...