twitter


1. Mencari titik tengah sebuah garis yang ujung titiknya adalah A(x1,y1) dan B(x2,y2)

Deklarasi :
x1, x2, y1, y2 = integer (input)
x3, y3 = integer (output)

Deskripsi :
read (x1, x2, y1, y2)
x3 <-- (x1+x2)/2
y3 <-- (y1+y2)/2
write(x3,y3)

contoh :

x1 = 4
x2 = 8
y1 = 9
y2 = 1
maka titik tengah = 6,5
-  flowchat


 
















- c++

 

2. Memisahkan bilangan integer yang kurang dari 1000 menjadi komponen- komponennya

Deklarasi :
x = integer (input)
a, b, c = integer (output)

Deskripsi :
read (x)
a <-- (x - x%100)/100
b <-- (((x -(x%100))%100)/10)
c <-- x%10
write( a "Ratusan" , b "Puluhan, c "Satuan")


contoh 127 :
1 Ratusan
2 Puluhan
7 Satuan
  • Flowchart :    

  • C++ :
3. Menghitung determinan matriks berordo 2x2
Deklarasi :
a, b, c, d = integer(input)
x = integer(output)
Deskripsi :
read (a, b, c, d)
x <-- a*d - b*c
write(x)
contoh :
a = 9
b = 2
c = 6
d = 7
x = 9*7 - 2*7
hasil = 51
  • Flowchart :
  • C++ :


sekian dulu yaa.. :)

0 komentar:

Posting Komentar