Guest User

Untitled

a guest
Jun 25th, 2018
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.49 KB | None | 0 0
  1.  {
  2.             int x;
  3.             int y;
  4.             int p;
  5.             int q;
  6.  
  7.             x = 7;
  8.             y = x * 3;
  9.             p = 5;
  10.             q = 15;
  11.            
  12.  
  13.             string MyFirstTest;
  14.                 MyFirstTest="x * 3 = ";
  15.             Console.WriteLine(MyFirstTest + y);
  16.  
  17.             string MySecondTest;
  18.             MySecondTest = "p x 3 = ";
  19.             Console.WriteLine(MySecondTest + p * 3);
  20.  
  21.  
  22.  
  23.             Console.ReadLine();
  24.  
  25.  
  26.            
  27.         }
Add Comment
Please, Sign In to add comment