Quick actions

cmd+k|ctrl+k

Navigation

Languages

Tugas 1.1

Snippet info

Language

Cpp

Visibility

public

Author

nurizzatisql

Created

2024-10-19T14:18:20.557424Z

Updated

2024-10-19T14:18:20.557424Z

#include <iostream>
using namespace std;

int main() {
    //Tabel Band Favorit
    cout << "Tabel Band Favorit"<<endl;
    cout << "------------------------------------"<<endl;
    cout << "| No | Nama Band           | Genre |"<<endl;
    cout << "------------------------------------"<<endl;
    cout << "| 1 | Hivi!                | Pop   |"<<endl;
    cout << "| 2 | Maliq & D'Essentials | Pop   |"<<endl;
    cout << "| 3 | Twice                | K-Pop |"<<endl;
    cout << "------------------------------------"<<endl;
    return 0;
    //Nama : Nur Izzati Istiqlal
    //NIM  : 1620230004
}
INFO