-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStatement.cs
More file actions
35 lines (27 loc) · 833 Bytes
/
Statement.cs
File metadata and controls
35 lines (27 loc) · 833 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApp14
{
internal class Program
{
static void Main(string[] args)
{
/*
Statements
Statements are the actions that your program performs,
from defining data to if conditions or any block of code,calling methods...
*/
int x = 10; // Diclaration Stetment
int y; //Assigment Stetment
y = 20;
y++; //Expression stetment
/* we have a lot of different type of statement like
if statement , switch statement , labeled statement .
we talk about each of statement in the files
*/
}
}
}