silentrider
On Senin, 23 Maret 2015
faktorisasi dengan menggunakan Raptor,C++,Jeliot
1.Raptor
2.C++
#include <iostream>
using namespace std;
class Faktorial{
int x;
int hasil;
public:
Faktorial();
void input();
void process();
void output();
};
Faktorial::Faktorial(){
cout<<"PROGRAM PEMFAKTORIALAN"<<endl;
}
void Faktorial::input(){
cout<<"MASUKAN BILANGAN : ";cin>>x;
}
void Faktorial::process(){
hasil=1;
cout<<x<<"= ";
for(int i=x;i>0;i--){
hasil=hasil*i;
cout<<i;
if(i!=1){
cout<<" X ";}
}
}
void Faktorial::output(){
cout<<"hasil:"<<hasil;
}
int main ()
{
Faktorial bilangan;
bilangan.input();
bilangan.process();
bilangan.output();
return 0;
}
hasil compile
3.Jeliot