Faktoriyel bulma c++ da yazilmis!!
#include<iostream.h>
#include<conio.h>
main()
{
int x,y=1;
int z;
cout<<"Lutfen su sayi gir="; cin>>x;
for(z=1; z<=x; z++)
{
y=y*z;
}
cout<<x<<"nin/nun faktoriyeli="<<y;
cout<<endl;
cout<<endl;
cout<<endl;
cout<<"PROGRAMCI ACILARIN PLAYBOYU Abidin";
getch();
}