You are on page 1of 35

Algoritma & Pemrograman

Alief Wikarta
Example of Algorithm
Example of Algorithm
Example of Algorithm
Flowchart Symbols
Terminator : start / end

Data Input/Output

Process step

Decision

Connector

Flow line
Flowchart: Logic Structures

SEQUENCE STRUCTURE SELECTION STRUCTURE LOOP STRUCTURE

Page 404
Sequence, Selection,
and Repetition Controls
• Sequence control structure

Executing a GOTO command


directs the computer to a different
part of the program.

9
Sequence, Selection,
and Repetition Controls
• Selection control structure

The computer
executes a decision
indicated on the
flowchart by the
question in the
diamond shape.

10
Sequence, Selection,
and Repetition Controls
• Repetition control structure

To execute a loop, the computer


repeats one or more commands
until some condition indicates
that the looping should stop.

Chapter 12: Computer


11
Programming
Video from Udacity Youtube
• Free Courses: Programming Foundations with Python
• https://www.youtube.com/playlist?list=PLAwxTw4SYaPnYajEbZvqtcV
WQ6XGhvtOW
Video Dancing
Test for Loops
http://www.tutorialspoint.com/python/python_while_loop.htm
Video Traveler
Test for If Statements
https://www.tutorialspoint.com/python/python_if_else.htm
Install Python
https://www.python.org/downloads/
Video Take a Break import time
import webbrowser
-Use Function-
time.sleep(10)
webbrowser.open("http://www.youtube.com/
watch?v=dQw4w9WgXcQ")

import time

print "Start : %s" % time.ctime()


time.sleep( 15 )
print "End : %s" % time.ctime()
Video Take a Break
-Use Function-

http://anh.cs.luc.edu/python/hands-on/3.1/handsonHtml/functions.html
Secret Message
-Use Function-
Module OS
https://docs.python.org/2/library/os.html
for
loop statement

https://www.tutorialspoint.com/python/python_for_loop.htm
String Translate

https://www.tutorialspoint.com/python/string_translate.htm
Object Oriented Programming (OOP)

https://realpython.com/beginners-guide-python-turtle/

https://medium.com/edureka/python-turtle-module-361816449390
Class Turtle

You might also like