-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathq1 .txt
More file actions
23 lines (19 loc) · 754 Bytes
/
q1 .txt
File metadata and controls
23 lines (19 loc) · 754 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Console.WriteLine(" ");
Console.WriteLine("------------CV-----------");
Console.WriteLine("Name : Zain Ahmed Baig");
Console.WriteLine("CGPA : 3.14");
Console.WriteLine("Age : 22");
Console.WriteLine("Depart: BSCS");
Console.WriteLine("-------------------------");
Console.WriteLine("Enter a Number : ");
int a = 0;
a = Convert.ToInt32(Console.ReadLine());
if(a%2==0)
{
Console.WriteLine(a +" is an Even number.");
}
else
{
Console.WriteLine(a +" is a Odd number.");
}
Console.ReadLine();