Advertisement
Spocoman

Favorite Movie

Dec 9th, 2021 (edited)
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 2.75 KB | None | 0 0
  1. using System;
  2.  
  3. namespace FavoriteMovie
  4. {
  5.     class Program
  6.     {
  7.         public static void Main()
  8.         {
  9.             string bestMovie = "";
  10.             int asciiSum = 0;
  11.             int counter = 0;
  12.             string movie = Console.ReadLine();
  13.  
  14.             while (movie != "STOP" && counter != 7)
  15.             {
  16.                 int currentAscii = 0;
  17.                 for (int j = 0; j < movie.Length; j++)
  18.                 {
  19.                     currentAscii += movie[j];
  20.                     if (movie[j] > 96 && movie[j] < 123)
  21.                     {
  22.                         currentAscii -= movie.Length * 2;
  23.                     }
  24.                     else if (movie[j] > 64 && movie[j] < 91)
  25.                     {
  26.                         currentAscii -= movie.Length;
  27.                     }
  28.  
  29.                     if (currentAscii > asciiSum)
  30.                     {
  31.                         bestMovie = movie;
  32.                         asciiSum = currentAscii;
  33.                     }
  34.                 }
  35.                 counter++;
  36.                 movie = Console.ReadLine();
  37.             }
  38.             if (counter == 7)
  39.             {
  40.                 Console.WriteLine("The limit is reached.");
  41.             }
  42.             Console.WriteLine($"The best movie for you is {bestMovie} with {asciiSum} ASCII sum.");
  43.         }
  44.     }
  45. }
  46.  
  47. Решение с for:
  48.  
  49. using System;
  50.  
  51. namespace FavoriteMovie
  52. {
  53.     class Program
  54.     {
  55.         public static void Main()
  56.         {
  57.             string bestMovie = "";
  58.             int asciiSum = 0;
  59.             bool isStop = false;
  60.  
  61.             for (int i = 0; i < 7; i++)
  62.             {
  63.                 string movie = Console.ReadLine();
  64.                 if (movie == "STOP")
  65.                 {
  66.                     isStop = true;
  67.                     break;
  68.                 }
  69.                 int currentAscii = 0;
  70.                 for (int j = 0; j < movie.Length; j++)
  71.                 {
  72.                     currentAscii += movie[j];
  73.                     if (movie[j] > 96 && movie[j] < 123)
  74.                     {
  75.                         currentAscii -= movie.Length * 2;
  76.                     }
  77.                     else if (movie[j] > 64 && movie[j] < 91)
  78.                     {
  79.                         currentAscii -= movie.Length;
  80.                     }
  81.  
  82.                     if (currentAscii > asciiSum)
  83.                     {
  84.                         bestMovie = movie;
  85.                         asciiSum = currentAscii;
  86.                     }
  87.                 }
  88.             }
  89.  
  90.             if (isStop == false)
  91.             {
  92.                 Console.WriteLine("The limit is reached.");
  93.             }
  94.             Console.WriteLine($"The best movie for you is {bestMovie} with {asciiSum} ASCII sum.");
  95.         }
  96.     }
  97. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement