C#: Basic Review

Post Reply
User avatar
Jason
Site Admin
Posts: 809
Joined: Tue Jul 01, 2025 10:13 am

Code: Select all

// basic-c-sharp-review-using-student-profiles.cs

using System;

namespace StudentProfiles
{

	class StudentProfile1
	{

		static void Main(String[ ], args)
		{
		int age = 44;

		string _school = "Duke";

		string school_team = "basketball team";

		Console.WriteLine($ "The student is {age}. There's no way he is on the {_school} {school_team}.");

		Console.WriteLine("The student is" + " " + age + "." + " " + "There's no way he is on the" + " " + _school + " " + school_team + ".");
		}
	
	}

}

// Good review 

/* I second
that. */

}
}
}

 

POSTREACT(ions) SUMMARY

Post Reply