Advertisement
rukvir

HW 1_4

Feb 2nd, 2025
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.68 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Globalization;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7.  
  8. namespace HW_2025
  9. {
  10.     internal class Program
  11.     {
  12.         static void Main(string[] args)
  13.         {
  14.             int rowPicture = 3;
  15.             int totalPictures = 52;
  16.             int temp = 0;
  17.  
  18.            
  19.             temp = totalPictures / rowPicture;
  20.             Console.WriteLine($"Всего можно повесить рядов: {temp}");
  21.             temp = totalPictures % rowPicture;
  22.             Console.WriteLine($"Останется картин: {temp}");
  23.  
  24.             Console.ReadKey();
  25.         }
  26.     }
  27. }
  28.  
  29.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement