56
1
using System;
2
public class Program {
3
public static void Main() {
4
int a;
5
int b = 5;
6
int c = 8;
7
8
// =
9
a = b + c;
10
Console.WriteLine("'=' : " + a);
11
12
// +=
13
int x = 5;
14
x += 2;
15
Console.WriteLine("'+=' : " + x);
16
17
// +-
18
int y = 5;
19
y -= 2;
20
Console.WriteLine("'+=' : " + y);
21
22
// *=
23
int z = 5;
24
z -= 2;
Cached Result
True