Posts

Showing posts from November, 2023

Print Fees Slip In C# Program.

CODE:  using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Array_Practise1 {     class Program     {         static void Main(string[] args)         {                 double dis = 0,pay;             double tfees=0;             Console.WriteLine("Enter Your Name");             string sname = Convert.ToString(Console.ReadLine());             Console.WriteLine("Enter Your Registration No");             int reg = Convert.ToInt32(Console.ReadLine());             Console.WriteLine("Enter your Departmrnt");             string dep = Convert.ToString(Console.ReadLine());             Console.WriteLine("Enter your no of Courses");             int n = Convert.ToInt32(Console.ReadLine());             string[] cname = new string[n];             double[] fees = new double[n];             int[] chrs = new int[n];             for (int i = 0; i < n; i++)             {                 Cons

Create A program to Calculate GPA Of Student Of University in C#.

  CODE: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Array_Practise1 {     class Program     {         static void Main(string[] args)         {             double tgpp=0, tchrs=0,gpa=0;             Console.WriteLine("Enter No Of Courses:");             int nc = Convert.ToInt32(Console.ReadLine());             string[] cname = new string[nc];             double[] chrs = new double[nc];             double[] marks = new double[nc];             string[] grade = new string[nc];             double[] gp = new double[nc];             double[] gpp = new double[nc];             for (int i = 0; i < nc; i++)             {                 Console.WriteLine("Enter Course Title:");                 cname[i] = Console.ReadLine();                 Console.WriteLine("Enter Credit Hours Of Course:");                 chrs[i] =double.Parse (Console.ReadLine());                 Console.WriteLine(

Input all the expenditure of 4 weeks and find min, max and average expense. in c#

 CODE: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace cp_theory_task_paractise {     class Program     {         static void Main(string[] args)         {                           int min = 0, max = 0, avg = 0, n,exp,texp=0;             Console.WriteLine("Enter no of weeks");             n = Convert.ToInt32(Console.ReadLine());             for (int i = 1; i <= n; i++)             {                 Console.WriteLine("Enter Expenses of week {0}",i);                 exp = Convert.ToInt32(Console.ReadLine());                 if (i == 1)                 {                     max = exp;                     min = exp;                 }                 if (max<exp)                 {                     max = exp;                 }                 if (min>exp)                 {                     min = exp;                 }                 texp = texp + exp;             }             a

Create a program to enter Bahria university, You can only enter if you’re a student or faculty or employee. in c#

 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace cp_theory_task_paractise {     class Program     {         static void Main(string[] args)         {                  string type;             Console.WriteLine("\t\tWelcome to Bahria University Entrance\n");             Console.WriteLine("Enter your role:");             type = string.Format(Console.ReadLine().ToLower());             if (type=="student" || type=="faculty" || type=="employee")             {                 Console.WriteLine("You are allowed to enter Bahria University.\n");                 Console.WriteLine("Beacause your admit as a {0} in this University.\n",type);             }             else             {                 Console.WriteLine("Not Allowed! Only students, faculty, and employees are allowed.");                   }         }     } }              

 Create a program to enter computer programming class,(University = Bahria, Department = BSE, Class = Programming).

 code: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace cp_theory_task_paractise {     class Program     {         static void Main(string[] args)         {                  string uni,depart,clas;             Console.WriteLine("Enter your university");             uni = Convert.ToString(Console.ReadLine().ToLower());             if (uni=="bahria")             {                 Console.WriteLine("Enter your Department");                 depart = Convert.ToString(Console.ReadLine());                 if (depart=="bse" || depart=="BSE")                 {                     Console.WriteLine("Enter your class");                     clas=Convert.ToString(Console.ReadLine().ToLower());                     if (clas=="programming")                     {                         Console.WriteLine("welcome to bse programming section");      

Total Expenditure of month program in c#.

using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace cp_theory_task_paractise {     class Program     {         static void Main(string[] args)         {               int travel, stat, lunch, tday = 0, texp = 0, day = 0, ts = 0, tt = 0, tl = 0;             do             {                 Console.WriteLine("Enter Travel Exp of day:{0}", day + 1);                 travel = Convert.ToInt32(Console.ReadLine());                 tt = tt + travel;                 Console.WriteLine("Enter Stationary Exp of day:{0}", day + 1);                 stat = Convert.ToInt32(Console.ReadLine());                 ts = ts + stat;                 Console.WriteLine("Enter Lunch Exp of day:{0}", day + 1);                 lunch = Convert.ToInt32(Console.ReadLine());                 tl = tl + lunch;                 tday = ts + tl + tt;                 Console.WriteLine("day{0} exp:{1}", day + 1, tday

voting program using if-else in c#.

  using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CP_Looping_Paractise {     class Program     {         static void Main(string[] args)         {                   char rep;                 string name;                 int age, tv = 0;                 do                 {                     Console.WriteLine("Enter Age");                     age = Convert.ToInt32(Console.ReadLine());                     if (age >= 18)                     {                     Console.WriteLine("Enter name of person");                     name = Convert.ToString(Console.ReadLine());                                         tv++;                     }                 else                 {                     Console.WriteLine("your age is short");                 }                 Console.WriteLine("do you want to add more");                 rep = Convert.ToChar(Console.ReadLine());

find min, max, avg, amount uses in a week in c# program.

using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CP__TH__task {     class Program     {         static void Main(string[] args)         {             int n,cnt=1,amt,sv,tamt=0,tsv=0,max=0,min=0,avg=0;             Console.WriteLine("Enter No of Days:");             n = Convert.ToInt32(Console.ReadLine());             for (int i = 1; i <= n; i++)             {                 Console.WriteLine("Enter Amount of day{0} ",cnt);                 amt = int.Parse(Console.ReadLine());                 tamt += amt;                 Console.WriteLine("Enter Saving Amount Of day{0}",cnt);                 sv = int.Parse(Console.ReadLine());                 tsv += sv;                 if (i==1)                 {                     max = amt;                     min = amt;                 }                 if (max<amt)                 {                     max = amt;                 }        

Vertical and Reverse Paramid in c# using loop.

 clink on this code: using System; public class HelloWorld {     public static void Main(string[] args)     {          for (int i = 1; i <= 5; i++)                {                    for (int j = i; j <=5; j++)                    {                        Console.Write(" ");                    }                    for (int k = 1; k <= i; k++)                    {                        Console.Write("*");                    }                    for (int l = 2; l <= i; l++)                    {                        Console.Write("*");                    }                      Console.WriteLine();                }     } }  code: using System; public class HelloWorld {     public static void Main(string[] args)     {         for (int i = 1; i <=5; i++)             {                 for (int j = 1; j <=i ; j++)                 {                     Console.Write(" ");                 }                 for (int k = i; k <=5 ; k+

Check Average, Minimum, Maximum Marks Of Student Class Performance in c# Using Loop and If-Else.

Image
 CODE: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CP__TH__task {     class Program     {         static void Main(string[] args)         {               int max = 0, min = 0, avg = 0,tmk=0 ;             int n;             Console.WriteLine("Enter Number Of Student in Class");             n = int.Parse(Console.ReadLine());             for (int i = 1; i <= n; i++)             {                 Console.WriteLine("Enter Your Marks:");                 int m =Convert.ToInt32(Console.ReadLine());                 if (i==1)                 {                     max = m;                     min = m;                 }                 if (max<m)                 {                     max = m;                 }                 if (min>m)                 {                     min = m;                 }                 tmk = tmk + m;             }             avg = tmk / n;             Conso

Finding Pythagoras Theorem in c# Using Switch-Case.

Image
  CODE: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CP__TH__task {     class Program     {         static void Main(string[] args)         { double p, h, b;             string choice;             Console.WriteLine("Enter what you want to find:");             Console.WriteLine("h is for Hypotenius ");             Console.WriteLine("b is for base");             Console.WriteLine("p is for perpendicular");                        choice = Convert.ToString(Console.ReadLine());             switch (choice)             {                 case "h":                     Console.WriteLine("Enter Value of Perpendicular:");                      p = double.Parse(Console.ReadLine());                     Console.WriteLine("Enter Value of Base:");                      b = double.Parse(Console.ReadLine());                     h = Math.Sqrt(Math.Pow(p, 2) +

Mart Payment system in c# and give discount to customer.

 CODE: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CP__TH__task {     class Program     {         static void Main(string[] args)         {             double payment, billamt=0, discount = 0,pamt, cnt = 0;             string rep;             do             {                 Console.WriteLine("Enter Amount OF Product:{0}",cnt+1);                 pamt = double.Parse(Console.ReadLine());                 billamt = billamt+ pamt;                                  cnt++;                 Console.WriteLine("Do you want to add More Item");                 rep = Convert.ToString(Console.ReadLine());                             } while (rep=="yes" || rep=="YES");                         if (billamt>25000)             {                  discount = billamt * 0.1;                               }             else             {                 discount = 0;             }