De allerførste øvelser i C# - STU-IT/shabab GitHub Wiki
Her er et par start-op opgaver i C#.
De er hentet fra bogen Fundamentals of Computer Programming with C# (bogen kan læses online eller downloades som pdf. Det vist endda muligt at købe den trykt.)
Her er det øvelserne fra kapitel 1.
Jeg har lagt et skabelon-projekt på github, som du kan download, og skrive i: https://github.com/TechnicalEducationCopenhagen/CS_HelloWorldPlus
-
Find the description of the System.Console class in the standard .NET API documentation (MSDN Library).
-
Find the description of the System.Console.WriteLine() method and its different possible parameters in the MSDN Library.
-
Compile and execute the sample program from this chapter using the command prompt (the console) and Visual Studio.
-
Modify the sample program to print a different greeting, for example "Good Day!".
-
Write a console application that prints your first and last name on the console.
-
Write a program that prints the following numbers on the console 1, 101, 1001, each on a new line.
-
Write a program that prints on the console the current date and time.
-
Write a program that prints the square root of 12345.
for nørder/stræbere/rutinerede
Opgave 10 og 11 behøver du kun at løse hvis du har arbejdet med C# før. Eller hvis du har et godt kendskab til et andet programmeringssprog, og kan finde vejledning i manualer, bøger og på internettet.
-
Write a program that prints the first 100 members of the sequence 2, -3, 4, -5, 6, -7, 8.
-
Write a program that reads your age from the console and prints your age after 10 years.
På dansk må den gerne skriveOm 10 år er du xx år gammel
, hvor xx er din alder om 10 år.