Advertisement
Lisenko_V

1.3.5.2

Aug 15th, 2017
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.60 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace ConsoleApp1
  8. {
  9.     class Program
  10.     {
  11.        
  12.         static void Main(string[] args)
  13.         {
  14.  
  15.             // В данном коде допущена ошибка, в консоль выводится 165, хотя ожидается 21.
  16.             // Исправьте с помощью круглых скобок.
  17.  
  18.             string message = (("Результат: ") + (8 * 2 + 5));
  19.             Console.WriteLine(message);
  20.  
  21.  
  22.         }
  23.  
  24.  
  25.     }
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement