-
برنامه ذخیره اطلاعات در تلریخ های مشخص
جمعه 16 دی 1401 13:21
رمز فایل :csharpamir.blogsky.com برای دانلود اینجا کلیک کنید
-
برنامه برای دانش آموز ها و مرتب کردن آن ها (ویژه معلمان)
جمعه 16 دی 1401 13:14
رمز : csharpamir.blogsky.com برای دانلود کلیک کنید.
-
کار با فایل در سی شارپ (کامل)
چهارشنبه 25 آبان 1401 19:49
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using static System.Console; using System.IO; namespace ConsoleApplication5 { class Program { static void Main(string[] args) { int ac = 1; bool ok = true; while (ok) { WriteLine("1 = Log in with...
-
عملیات توان در سی شارپ
چهارشنبه 25 آبان 1401 19:41
Console.WriteLine("NAMBER 1"); double A = double.Parse(Console.ReadLine()); double b = double.Parse(Console.ReadLine()); //خط پایین عملیات توان را انجام می دهد double p = Math.Pow(A, (int)b); Console.WriteLine(p);
-
ماشین حساب در سی شارپ در کنسول
چهارشنبه 25 آبان 1401 19:40
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApplication3 { class Program { static void Main(string[] args) { bool cont = true; while (cont) { Console.WriteLine("namber 1"); double namber1 =...
-
تبدیل دابل به استرینگ در سی شارپ
چهارشنبه 25 آبان 1401 19:36
double namber1 = double.Parse(namber2)
-
مرتب کرد اعداد از کوچک به بزرگ
چهارشنبه 25 آبان 1401 19:31
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApplication3 { class Program { static void Main(string[] args) { //سورس کد اعداد کوچک به بزرگ Console.WriteLine("How many numbers do you give him?"); int b =...
-
ساخت مثلث در سی شارپ در کلاس کنسول
چهارشنبه 25 آبان 1401 19:14
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { //برای شروع حلقه یک استرینگ از نوع بولین تعریف میکنیم به عنوان درست bool cont = true; //وایل که حلقه هست را می گزاریم و...
-
ساخت دایره در سی شارپ در کلاس کنسول
چهارشنبه 25 آبان 1401 19:10
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApplication2 { class Program { static void Main(string[] args) { double radius; double thickness = 0.4; ConsoleColor BorderColor = ConsoleColor.Yellow; Console.ForegroundColor =...