#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
0 komentar:
Posting Komentar