-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgram.cs
More file actions
51 lines (32 loc) · 1.38 KB
/
Program.cs
File metadata and controls
51 lines (32 loc) · 1.38 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
using System;
namespace Zennet
{
class Program
{
private const string V = "Ok finaly who's your best friend";
private const string Value = V;
static void Main(string[] args)
{
Console.Title = "ZenNet";
Console.ForegroundColor = ConsoleColor.Green;
Console.WindowHeight = 40;
Console.WriteLine("Yo Whats your name");
string userName = Console.ReadLine();
Console.WriteLine("Hello " +userName + ", its nice to meet you");
Console.WriteLine("My name is ZenNet V1.04 i was made to do what my creator arhum tells to do");
Console.WriteLine("Ok then whats your Fav color");
Console.ReadLine();
Console.WriteLine("Oh you like that color your a cool fellow");
Console.WriteLine("Ok guess my fav color");
Console.ReadLine();
Console.WriteLine("If you guessed any color but yellow, your wrong ");
Console.WriteLine("I like Yellow because its the color of happiness");
Console.WriteLine("Whats your fav food i like toast with cheese");
Console.ReadLine();
Console.WriteLine(Value);
Console.ReadLine();
Console.WriteLine("Ok bye for now");
Console.ReadKey();
}
}
}