1.Algoritma mencari titik tengah sebuah garis
- Deklarasi
x1,x2,y1,y2 tipe data integer (input)
m,n,hasil tipe data float (output)
- Deskripsi
membaca inputan variable x1,x2,y1,y2
nilai pada inputan x1 akan disimpan pada variable x1 , dan seterusnya
variable x1,x2,y1,y2 dimasukkan ke rumus m=float (x1+x2)/2 , n=float (y1+y2)/2 , dan hasil=m*n
outputnya rumus m , n , dan hasil
2.Sourch Code C++
#include <iostream>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
using namespace std;
int main(int argc, char** argv) {
int x1,x2,y1,y2;
float m,n,hasil;
cout<<"Masukkan x1 : ";
cin>>x1;
cout<<"Masukkan x2 : ";
cin>>x2;
cout<<"Masukkan y1 : ";
cin>>y1;
cout<<"Masukkan y2 : ";
cin>>y2;
m=float (x1+x2)/2;
n=float (y1+y2)/2;
hasil=m*n;
cout<<endl;
cout<<"X : "<<m<<endl;
cout<<"Y :"<<n<<endl;
cout<<"Hasil : "<<hasil;
return 0;
}
3.Dengan raptor
0 komentar:
Posting Komentar