Rabu, 06 April 2016

Membuat tabel perkalian dengan perulangan bertingkat

#include <iostream>
#include <conio.h>
#include <iomanip>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
using namespace std;
int main(int argc, char** argv) {
    int i,j;
    cout<<" Tabel Perkalian \n\n";
    for (i=1;i<=10;i++)
    { cout<<setw(5)<<i;
    for (j=1;j<=10;j++)
    cout<<setw(5)<<i*j;
    cout<<endl;
    }
    return 0;
}

Tidak ada komentar:

Posting Komentar