17 lines
328 B
C#
17 lines
328 B
C#
using System;
|
|
|
|
namespace C_Sharp_Console {
|
|
|
|
class example {
|
|
|
|
static void Main() {
|
|
string word;
|
|
int num;
|
|
|
|
Console.Write("Enter an integer: ");
|
|
num = Console.Read();
|
|
Console.Write("Enter a String: ");
|
|
word = Console.ReadLine();
|
|
}
|
|
}
|
|
}
|