Upload presentasi
Presentasi sedang didownload. Silahkan tunggu
Diterbitkan olehFarida Pranoto Telah diubah "8 tahun yang lalu
1
OPERATOR DAN FUNGSI MATEMATIK
2
Operator Assignment operator Assignment operator (operator pengerjaan) menggunakan simbol titik dua diikuti oleh tanda sama dengan (:=)
3
Operator… Binary operator Digunakan untuk mengoperasikan dua buah operand. digunakan untuk operasi aritmatika yang berhubungan dengan nilai tipe data integer dan real.
4
Operator… Unary operator Operator ini hanya menggunakan sebuah operand saja. Dapat berupa unary minus dan unary plus.
5
Operator… Bitwise operator Digunakan untuk operasi bit per bit pada nilai integer. Terdiri dari operator NOT, AND, OR, XOR, Shl, Shr.
6
Operator… Relational operator Relational operator digunakan untuk membandingkan hubungan antara dua buah operand dan akan didapatkan hasil tipe boolean, yaitu True atau False. Terdiri dari operator : =,, =, <>
7
Operator… Logical operator Terdapat 4 buah logical operator yaitu : NOT, AND, OR dan XOR. Operator ini bekerja dengan nilai-nilai logika, yaitu True dan False.
8
Operator… Set operator Digunakan untuk operasi himpunan. (+,-,*,in)
9
Operator… String operator Digunakan untuk operasi string. Hanya ada sebuah operator string saja, yaitu operator “+” yang digunakan untuk menggabungkan dua buah nilai string.
10
Precedence of Operators OperatorsPrecedence ~, not,Highest *, /, div, mod, and, &,. |, !, +, -, or,. =, <>,, >=, in,. or else, and thenLowest
11
Fungsi Sebuah Fungsi adalah kumpulan statement yang bersama-sama mengerjakan sebuah tugas. Dekalarasi Fungsi memberitahukan kompiler tentang nama fungsi, return type, dan parameter fungsi
12
Fungsi Matematik
13
Mendefinisikan Fungsi
14
Arguments: The argument(s) establish the linkage between the calling program and the function identifiers and also called the formal parameters. A parameter is like a placeholder. When a function is invoked, you pass a value to the parameter. This value is referred to as actual parameter or argument. The parameter list refers to the type, order, and number of the parameters of a function. Use of such formal parameters is optional. These parameters may have standard data type, user-defined datatype or subrange data type. The formal parameters list appearing in the function statement could be simple or subscripted variables, arrays or structured variables, or subprograms. Return Type: All functions must return a value, so all functions must be assigned a type. The function-type is the data type of the value the function returns. It may be standard, user- defined scalar or subrange type but it cannot be structured type. Local declarations: local declarations refer to the declarations for labels, constants, variables, functions and procedures, which are application to the body of function only. Function Body: The function body contains a collection of statements that define what the function does. It should always be enclosed between the reserved words begin and end. It is the part of a function where all computations are done. There must be an assignment statement of the type - name := expression; in the function body that assigns a value to the function name. This value is returned as and when the function is executed. The last statement in the body must be an end statement.
15
Mendefinisikan Fungsi….
17
Reserved Word
18
Decision Making
19
If Then Statemen
20
If Then Else Statement
21
Looping
22
While-do loop
23
For-do loop
24
Go to statement
Presentasi serupa
© 2024 SlidePlayer.info Inc.
All rights reserved.