Advertisement
istomina_sofia

(вив)Задание 1

Dec 16th, 2022
697
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.44 KB | None | 0 0
  1. using System;
  2.  
  3. namespace Задание_1
  4. {
  5.     internal class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             Console.WriteLine("Введите два числа");
  10.             int x = Convert.ToInt32(Console.ReadLine());
  11.             int y = Convert.ToInt32(Console.ReadLine());
  12.  
  13.             int z = x / y;
  14.             Console.WriteLine("Целая часть от деления: " + z);
  15.  
  16.         }
  17.     }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement