Saturday, 19 September 2015

perulangan for dan perulanga while dalam c++



#include <iostream>
#include <cstdlib>

using namespace std;

/* run this program using the console pauser or add your own getch, system("pause") or input loop */

int main(int argc, char** argv) {
// contoh perulangan menggunakan for

/* for (int a=10; a>=1; a--){
for (int b=1; b<=a; b++){
cout<<a*b<<" ";
cout<<endl;
}
*/

// contoh perulangan dengan menggunakan while

int a = 10;
int b;

while (a >= 1){
b=1;
while (b <= a){
cout<<a*b<<' ';
b++;
}
cout<<endl;
a--;
}


return 0;
}