Search

Struktur While Bersarang


#include <iostream>


using namespace std;

int main(int argc, char *argv[]) {
    int J = 10;
    int K;
    while(J>=1){
        K=1;
        while(K<=J){
            cout<<K*J<<' ';
            K++;
        }
        cout<<'\n';
        J--;
    }
   
    return 0;
 }



No comments:

Post a Comment