Senin, 21 Maret 2016

MENCARI TITIK TENGAH

C++ :
#include <iostream>
using namespace std;
/* run this program using the console pauser or add your own getch, system("pause") or input loop */

int main(int argc, char** argv) {
    float x1,y1,a;
    cout<<"mencari titik tengah"<<endl;
    cout<<"masukkan titik 1=";cin>>x1;
    cout<<"masukkan titik 2=";cin>>y1;
    a=((x1+y1)/2);
    cout<<"titik tengah garisnya "<<x1<<" dan "<<y1<<endl;
    cout<<"titik tengahnya ="<<a;
    return 0;
}

OUTPUT RAPTOR DAN C++ :


0 komentar:

Posting Komentar