Spocoman

Computer Firm

Dec 12th, 2021 (edited)
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.21 KB | None | 0 0
  1. using System;
  2.  
  3. namespace ComputerFirm
  4. {
  5.     class Program
  6.     {
  7.         public static void Main()
  8.         {
  9.             int models = int.Parse(Console.ReadLine());
  10.             double sales = 0;
  11.             double rating = 0;
  12.  
  13.             for (int i = 0; i < models; i++)
  14.             {
  15.                 int currentModel = int.Parse(Console.ReadLine());
  16.                 int modelRating = currentModel % 10;
  17.                 double modelSales = (int)(currentModel / 10);
  18.  
  19.                 if (modelRating == 2)
  20.                 {
  21.                     modelSales = 0;
  22.                 }
  23.                 else if (modelRating == 3)
  24.                 {
  25.                     modelSales /= 2;
  26.                 }
  27.                 else if (modelRating == 4)
  28.                 {
  29.                     modelSales *= 0.7;
  30.                 }
  31.                 else if (modelRating == 5)
  32.                 {
  33.                     modelSales *= 0.85;
  34.                 }
  35.                
  36.                 sales += modelSales;
  37.                 rating += modelRating;
  38.             }
  39.             Console.WriteLine($"{ Math.Floor(sales):f2}");
  40.             Console.WriteLine($"{ (rating / models):f2}");
  41.         }
  42.     }
  43. }
  44.  
  45.        
  46.    
  47.  
  48.  
  49.  
Add Comment
Please, Sign In to add comment