Quick actions

cmd+k|ctrl+k

Navigation

Languages

Tugas 1.1

Snippet info

Language

Cpp

Visibility

public

Author

muhammad-hikmal-faturrahman

Created

2024-10-25T23:24:01.262123Z

Updated

2024-10-25T23:24:01.262123Z

#include <iostream>
using namespace std;

int main() {
    cout<<"Tabel Band Favorit"<<endl;
    cout<<"----------------------------------------"<<endl;
    cout<<"| No | Nama Band          |   Genre    |"<<endl;
    cout<<"----------------------------------------"<<endl;
    cout<<"| 1. | Honne              | Indie      |"<<endl;
    cout<<"| 2. | Avengend Sevenfold | Heavy Metal|"<<endl;
    cout<<"| 3. | Rex Orange County  | Indie      |"<<endl;
    cout<<"| 4. | Billie Ellish      | All Genre  |"<<endl;
    cout<<"----------------------------------------";
    return 0;
}
INFO