Presentasi sedang didownload. Silahkan tunggu

Presentasi sedang didownload. Silahkan tunggu

Lecture 1 Introduction to C# Erick Pranata © Sekolah Tinggi Teknik Surabaya 1.

Presentasi serupa


Presentasi berjudul: "Lecture 1 Introduction to C# Erick Pranata © Sekolah Tinggi Teknik Surabaya 1."— Transcript presentasi:

1 Lecture 1 Introduction to C# Erick Pranata © Sekolah Tinggi Teknik Surabaya 1

2 using System; class Hello { static void Main() { Console.WriteLine("Hello World"); } 2 © Sekolah Tinggi Teknik Surabaya

3 3

4 4

5 5

6 » Constraints ˃Start with alphabet or underscore only ˃Continue with alphanumeric and underscore ˃No reserved words » Variable Structure ˃ = value; » Constant Structure ˃ const = value; 6 © Sekolah Tinggi Teknik Surabaya

7 » IF Statement if (expr) { statement } else if (expr) { statement } A=(1==1 ? 2 : 3); » Switch Statement int caseSwitch = 1; switch (caseSwitch) { case 1: Console.WriteLine("Case 1"); break; case 2: Console.WriteLine("Case 2"); break; default: Console.WriteLine(“Default Case"); break; } 7 © Sekolah Tinggi Teknik Surabaya

8 for (initializer; condition; iterator) { statement(s); } while (condition) { statement(s); } do { statement(s); } while (condition); 8 © Sekolah Tinggi Teknik Surabaya

9 9

10 10 © Sekolah Tinggi Teknik Surabaya

11 11 © Sekolah Tinggi Teknik Surabaya

12 12 © Sekolah Tinggi Teknik Surabaya

13 13 © Sekolah Tinggi Teknik Surabaya

14 void cetakHalo() { Console.WriteLine(“Halo”); } double Square(double value) { return value*value; } 14 © Sekolah Tinggi Teknik Surabaya

15 Bilangan-bilangan seperti 153 dan 370 memiliki sifat yang menarik, disebut Bilangan yang Mencintai Dirinya Sendiri, karena total pangkat tiga dari digit-digit penyusunnya adalah bilangan itu sendiri: 153 = 1 3 + 5 3 + 3 3 = 1 + 125 + 27 = 153 370 = 3 3 + 7 3 + 0 3 = 27 + 343 + 0 = 370 Cetaklah semua bilangan dalam range 1 s.d. 500 yang memiliki sifat yang sama. 15 © Sekolah Tinggi Teknik Surabaya

16 » Andrew Troelsen, Pro C# and The.Net 4.5 Framework (Sixth Edition), Apress, 2012 » C# Tutorial, http://www.tutorialspoint.com/csharp/i ndex.htm, accessed March 10 th, 2014 http://www.tutorialspoint.com/csharp/i ndex.htm 16 © Sekolah Tinggi Teknik Surabaya


Download ppt "Lecture 1 Introduction to C# Erick Pranata © Sekolah Tinggi Teknik Surabaya 1."

Presentasi serupa


Iklan oleh Google