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

  1. Find the description of the System.Console class in the standard .NET API documentation (MSDN Library).

  2. Find the description of the System.Console.WriteLine() method and its different possible parameters in the MSDN Library.

  3. Compile and execute the sample program from this chapter using the command prompt (the console) and Visual Studio.

  4. Modify the sample program to print a different greeting, for example "Good Day!".

  5. Write a console application that prints your first and last name on the console.

  6. Write a program that prints the following numbers on the console 1, 101, 1001, each on a new line.

  7. Write a program that prints on the console the current date and time.

  8. 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.

  1. Write a program that prints the first 100 members of the sequence 2, -3, 4, -5, 6, -7, 8.

  2. Write a program that reads your age from the console and prints your age after 10 years.
    På dansk må den gerne skrive Om 10 år er du xx år gammel, hvor xx er din alder om 10 år.