Kamis, 31 Maret 2016

PEMROGRAMAN FUNGSI PERKALIAN 2 BILANGAN ( KASUS 5.4 )

1.C++ :
 #include <iostream>
#include <math.h>
#include <stdlib.h>
#include <stdio.h>'
#include <conio.h>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
using namespace std;
int kali(int x,int y){

 int jumlah=0;
 for(int i=1;i<=abs(y);i++)
 jumlah=jumlah+x;
 if(y<0)return(-jumlah);
 else return(jumlah);
}
int main(int argc, char** argv) {
 int a,b;
 cout<<"Masukkan Angka Pertama : "; cin>>a;
 cout<<"Masukkan Angka Kedua : "; cin>>b;
 cout<<a<<" x "<<b<<" = "<<kali(a,b)<<endl;
 return 0;
}


2.Raptor :
Main Raptor
Fungsi

luvne.com ayeey.com cicicookies.com mbepp.com kumpulanrumusnya.com.com tipscantiknya.com

0 komentar:

Posting Komentar