Sunday, 29 March 2015

Membuat Faktorial Bilangan Segitiga dengan C++














#include <iostream.h>

int main()
{

for(int i = 1; i < 10+1; i++) {
 for(int j = 1; j < i+1; j++) {
(j < i) ? cout<<i*j<<" " : cout<<i*j<<endl;
 }
}
return 0;
}








0 comments:

Post a Comment