Minggu, 27 Maret 2016

MENGHITUNG PERKALIAN PERJUMLAHAN DENGAN C++

0

#include <iostream>
#include <math.h>
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) {
    int x,y, hasil =0;
    cout<<"menghitung perkalian dengan cara penjumlahan    "<<endl;
    cout<<"masukkan nilai x=";cin>>x;
    cout<<"masukkan nilai y=";cin>>y;
    for(int i=1;i<=abs(y);i++){
        hasil +=x;
        if(y<0) hasil=-hasil;
        cout<<x<<"x"<<y<<"="<<hasil<<endl;
    }
    return 0;
}

0 komentar:

Posting Komentar