Quick actions

cmd+k|ctrl+k

Navigation

Languages

Tugas 7.1

Snippet info

Language

Cpp

Visibility

public

Author

farreladh

Created

2025-11-22T05:09:12.483944Z

Updated

2025-11-25T09:58:09.624153Z

#include <iostream>
using namespace std;

int main() {
    // Header tabel
    cout << "No\tA\tB\tA*A\tB*B" << endl;
    cout << "---------------------------------------\t\t\t\t" << endl;
    
    // Data rows
    for (int i = 1; i <= 10; i++) {
        int A = 2 * i;
        int B = 3 * i + 1;
        int A2 = A * A;
        int B2 = B * B;
        
        cout << i << "\t" << A << "\t" << B << "\t" 
             << A2 << "\t" << B2 << endl;
    }
    
    // Garis pemisah dan identitas
    cout << "----------------------------------------" << endl;
    cout << "Nama : Farrel Adhysta Pradana" << endl;
    cout << "Nim  : 3420240008" << endl;
    
    return 0;
}
INFO