{ membaca masukan x1,x2,y1,y2
program menampilkan hasil x = (x1+x2)/2 dan y = (y1+y2)/2
menampilkan hasil x dan y }
Deklarasi :
x1 (float = input)
x2 (float = input)
y1 (float = input)
y2 (float = input)
x (float = output)
y (float = output)
Deskripsi :
read (x1,x2,y1,y2)
x = (x1+x2)/2
y = (y1+y2)/2
write (x dan y)
Apabila anda ingin menulisnya dalam bahasa C++ yaitu sebagai berikut :
#include <iostream.h>
#include <stdio.h>
int main(){
float x1,x2,y1,y2,x,y;
cout << "titik x1 : ";
cin >> x1;
cout << "titik x2 : ";
cin >> x2;
cout << "titik y1 : ";
cin >> y1;
cout << "titik y2 : ";
cin >> y2;
x = (x1+x2)/2;
y = (y1+y2)/2;
cout << "titik tengah garis x1 dan x2 yaitu : " << x << endl;
cout << "titik tengah garis y1 dan y2 yaitu : " << y << endl;
cout << "titik tengha kedua garis antar A(x1,y1) dan B(x2,y2) adalah : ( "<< x <<","<< y <<")" << endl;
return 0;
}
dan bagaimana hasil runningnya ? sebagai berikut :
0 komentar:
Posting Komentar