LecDemo2
LecDemo2
using System.Collections.Generic;
using System.Linq;
using System.Net.Security;
using System.Text;
using System.Threading.Tasks;
using static System.Console;
namespace LecDemo2
{
internal class Program
{
static void Main(string[] args)
{
string userName;
int myNumber;
userName = "Aiden";
myNumber = 890;
//WriteLine("***************************************************************"); //50
//WriteLine("* " + "Name: " + name + " *");
//WriteLine("* " + "Faculty: " + faculty + " *");
//WriteLine("* " + "Department: " + department + " *");
//WriteLine("***************************************************************");
Write("Enter Grade1");
int grade1 = int.Parse(ReadLine());
;
// WriteLine is a void return, but a ReadLine can be returned to the string, aka
// must be captured
}
}
}