Advertisement
Guest User

Untitled

a guest
Mar 28th, 2020
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 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. static void Main(string[] args)
  12. {
  13.  
  14.  
  15.  
  16. int l1 = 13;
  17. int l3 = 2;
  18. int l2 = 32;
  19. int wynik = 4 * l1 + 3 - l2 * 7 - l3;
  20.  
  21.  
  22.  
  23. Console.WriteLine(wynik);
  24. Console.ReadKey ();
  25.  
  26. }
  27. }
  28.  
  29.  
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement