-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathProgram.cs
More file actions
29 lines (24 loc) · 733 Bytes
/
Program.cs
File metadata and controls
29 lines (24 loc) · 733 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
using System;
namespace SimpleConsoleIOapp
{
class Program
{
static void Main(string[] args)
{
// Similar to print
Console.WriteLine("**** Basic IO ****");
GetUserData();
Console.ReadLine();
static void GetUserData()
{
// Get name and age
Console.Write("Enter your name: ");
string userName = Console.ReadLine();
Console.Write("Enter your age: ");
string userAge = Console.ReadLine();
//Echo to the console
Console.WriteLine("Hello {0}! You are {1} years old", userName, userAge);
}
}
}
}