en
Feedback
Coder Baba

Coder Baba

Open in Telegram

Everything about programming for beginners. 1 and only official telegram channel of CODERBABA India. Content: .NET Developer, Programming (ASP. NET, VB. NET, C#, SQL Server), & Projects follow me https://linktr.ee/coderbaba *Programming *Coding *Note

Show more
2 231
Subscribers
-224 hours
-137 days
-3730 days
Posts Archive
πŸ‘†πŸ‘†

Hi Guys Download Login Page Design using HTML CSS https://www.instagram.com/p/ChwrJfLhA-6/?utm_source=ig_web_copy_link

Super Sales Inventory System C# .NET Project Source code & SQL Server Database DownloadπŸ‘‡πŸ‘‡πŸ‘‡ https://imojo.in/249cd2o https://d1qek42f5a2sdm.cloudfront.net/products/1090b0/BYWKefffSNC9PeCftRxe_search%20stock%20hinsitory.JPG

Super Sales Inventory System C# .NET Project Source code & SQL Server Database DownloadπŸ‘‡πŸ‘‡πŸ‘‡ https://imojo.in/249cd2o

Python FOR Loop | O Level Course| what is Control Flow Statement in Python https://youtu.be/yGkNjJ1Me3E

photo content
+6

Hello friends! I created this place to share notes, projects, source code, Interview preparation stuff, quzzies, handwritten notes and other content related to programming . for more update Subscribe my channel https://www.youtube.com/coderbaba Stay connected ! Show your love Have a nice coding ❀️ coders and Programmers @coder_baba

ASP .NET ADO .NET (Database Technology)
+5
ASP .NET ADO .NET (Database Technology)

photo content
+7

Cloud computing notes πŸ‘†πŸ‘†

photo content

photo content

photo content

photo content

photo content

photo content

photo content
+3

Prime Numbers in C# with Examples: β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€” number that should be greater than 1 and it only is divided by 1 and itself. For example, 2, 3, 5, 7, 11, 13, 17, 19, 23…., are the prime numbers. How to check if a given number is prime or not in C#?: β€”β€”β€” using System; namespace LogicalPrograms { public class Program { static void Main(string[] args) { Console.Write("Enter a Number : "); int number = int.Parse(Console.ReadLine()); bool IsPrime = true; for (int i = 2; i < number/2; i++) { if (number % i == 0) { IsPrime = false; break; } } if (IsPrime) { Console.Write("Number is Prime."); } else { Console.Write("Number is not Prime."); } Console.ReadKey(); } } } β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”outputβ€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”- Enter a number 19 Number is Prime Prints the Prime Numbers between a range of numbers in C#?:- β€”β€”β€”β€”β€”β€”- using System; namespace LogicalPrograms { public class Program { static void Main(string[] args) { Console.Write("Enter The Start Number: "); int startNumber = int.Parse(Console.ReadLine()); Console.Write("Enter the End Number : "); int endNumber = Convert.ToInt32(Console.ReadLine()); Console.WriteLine($"The Prime Numbers between {startNumber} and {endNumber} are : "); for (int i = startNumber; i <= endNumber; i++) { int counter = 0; for (int j = 2; j <= i / 2; j++) { if (i % j == 0) { counter++; break; } } if (counter == 0 && i != 1) { Console.Write("{0} ", i); } } Console.ReadKey(); } } } β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”outputβ€”β€”β€”β€”β€”β€”- Enter the start number:1 enter the end number:20 The prime numbers between 1 and 20 are: 2 3 5 7 11 13 17 19 Subscribe #coderbaba www.youtube.com/coderbaba