ivana_andreevska

Basic Operacija

Mar 9th, 2022
974
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.30 KB | None | 0 0
  1. using System;
  2.  
  3. namespace prvaAuditoriska
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int a = 10;
  10.             int b = 20;
  11.             int c = 0;
  12.  
  13.             c = a + b;
  14.  
  15.             Console.WriteLine("Rezultat od operacijata e "+ c);
  16.         }
  17.     }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment