10
1.1 Introduction to Java 1.1 Introduction to Java

ICS 102 – Introduction to Computing I

  • Upload
    hedya

  • View
    54

  • Download
    0

Embed Size (px)

DESCRIPTION

ICS 102 – Introduction to Computing I. 1.1 Introduction to Java. Who am I ?!. Abdullah Khaled Al-Zamel Office: Bldg. 23, Rooom 064-8 Office Hours: TBA Phone: 7228 Email: azam @kfupm.edu.sa Web page: http://faculty.kfupm.edu.sa/ics/ azam. Course Contract!. - PowerPoint PPT Presentation

Citation preview

Page 1: ICS 102 – Introduction to Computing I

1.1 Introduction to Java1.1 Introduction to Java

Page 2: ICS 102 – Introduction to Computing I

2

• Abdullah Khaled Al-Zamel

• Office: Bldg. 23, Rooom 064-8

• Office Hours: TBA

• Phone: 7228

• Email: [email protected]

• Web page:http://faculty.kfupm.edu.sa/ics/azam

Page 3: ICS 102 – Introduction to Computing I

3

Page 4: ICS 102 – Introduction to Computing I

• Textbook:

- “ABSOLUTE JAVA” by WALTER SAVITCH, Addison Wesley, or 2nd edition, 2005.

- Grade Distribution :

4

Page 5: ICS 102 – Introduction to Computing I

• Web Site: http://www.ccse.kfupm.edu.sa/ics102

• Discussion: webcourses.kfupm.edu.sa

• Regarding Class Work.. Homework Quizzes Problem Solving (Participation)

© Abdullah K. Al-Zamel

ICS 102 - Introduction to Computing I

Page 6: ICS 102 – Introduction to Computing I

Salaam Shabab!!Salaam Shabab!!

Page 7: ICS 102 – Introduction to Computing I

public class Example01 {

public static void main(String[] args) {

System.out.println(“Hello ICS 102”)

}

}

© Abdullah K. Al-Zamel

ICS 102 - Introduction to Computing I

Page 8: ICS 102 – Introduction to Computing I

© Abdullah K. Al-Zamel

ICS 102 - Introduction to Computing I

Page 9: ICS 102 – Introduction to Computing I

import javax.swing.JOptionPane;

public class Example02 {

public static void main(String[] args) {

String ans;

ans = JOptionPane.showInputDialog(null, "Speed in miles per hour?");

double mph = Double.parseDouble(ans);

double kph = 1.621 * mph;

JOptionPane.showMessageDialog(null, "KPH = " + kph);

}

}

© Abdullah K. Al-Zamel

ICS 102 - Introduction to Computing I

Page 10: ICS 102 – Introduction to Computing I

Wait to see you next Wait to see you next class class