Jumat, 18 Maret 2016

latihan individu

Latihan Individu 

  •  Buatlah algoritma dan program untuk mencari titik tengan sebuah garis yang ujung titik nya adalah A(x1,y1) dan (Bx2,y2) .
 Algoritma :












Disini kita misalkan x1=4, x2=2,y1=3,y2=3. Rumus titik tengah = (x1+x2)/2 , (y1+y2)/2
. Jadi (4+2)/2 , (3+3)/2 , Titik tengah nya di (3,3)


#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) {
    float x1,y1,x2,y2,ttengahx,ttengahy;
    cout<<"Menghitung titik tengah 2 garis (x,y)"<<endl;
    cout<<"x1 = "; cin>>x1;
    cout<<"y1 = "; cin>>y1;
    cout<<"x2 = "; cin>>x2;
    cout<<"y2 = "; cin>>y2;
    ttengahx=(x1+x2)/2;
    ttengahy=(y1+y2)/2;
    cout<<"titik tengah 2 garis = "<<"("<<ttengahx<<"), ("<<ttengahy<<")";
    return 0;
}


Unknown

Author & Editor

Has laoreet percipitur ad. Vide interesset in mei, no his legimus verterem. Et nostrum imperdiet appellantur usu, mnesarchum referrentur id vim.

0 komentar:

Posting Komentar