Monday 15 June 2015

BEginner advise to C# begineer

1. Declare your every variable at top even without entering/assigning it its value.
2. Use comment to:
- Explain
- to temporarily disable/unable your code
- to enter a live hyperlink / URL without disturb other code, contoh: /* http://www.facebook.com */
- To do : what need to be added later and what need to be deleted later.
3. Use common variable type like: int, string, float.
4. Console.ReadLine itu untuk membaca
5. Console.WriteLine itu untuk menulis

6. Block of code itu ditandai dengan kurung kurawal buka( { ) dan kurung kurawal tutup ( } ) contoh:
{
     line-1 of this block;
     line-2 of this block;
     line-3 of this block;
}
Dan yang memiliki/mempunyai/belong to blok ini adalah line/baris diatas kurung kurawal buka ( { ).

7. Cara yang paling mudah untuk mempelajari if adalah dengan
membuat tebak-tebakan pintu: pintu manakah yang dipilih pintu 1, 2 atau pintu 3.
Jika pintu 1 yang dipilih hadiahnya mobil
Jika pintu 2 yang dipilih hadiahnya motor
Jika pintu 3 yang dipilih hadiahnya tidak ada alias kosong.

Contoh:
Console.WriteLine("Please choose door 1, 2, or 3")
string userValue = Console.ReadLine();
if (userValue == "1") Console.WriteLine("You got a new car!");
elseif(userValue =="2") Console.Writeline("You got a motorcycle!");
elseif(userValue == "3") Console.WriteLine("You got nothing, the door is empty");
endif



No comments:

Post a Comment