Advertisement
mmayoub

Ex02, 28.06.2021

Jun 28th, 2021
1,483
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.03 KB | None | 0 0
  1. using System;
  2.  
  3. namespace ConsoleApp3
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int x;
  10.             int boys=0;
  11.             int girls = 0;
  12.  
  13.             Console.Write("Enter number of pupils: ");
  14.             int n = int.Parse(Console.ReadLine());
  15.  
  16.             for (int i = 0; i < n; i++) {
  17.                 Console.Write("Enter 1 for male, 2 for female: ");
  18.                 x = int.Parse(Console.ReadLine());
  19.  
  20.                 if (x==1)
  21.                 {
  22.                     boys++;
  23.                 }
  24.                 else
  25.                 {
  26.                     girls++;
  27.                 }
  28.             }
  29.  
  30.             if (boys > girls)
  31.             {
  32.                 Console.WriteLine("boys");
  33.             }
  34.             else {
  35.                 if (girls > boys)
  36.                 {
  37.                     Console.WriteLine("girls");
  38.                 }
  39.                 else {
  40.                     Console.WriteLine("girls=boys");
  41.                 }
  42.             }
  43.         }
  44.     }
  45. }
  46.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement