Quick actions

cmd+k|ctrl+k

Navigation

Languages

Tugas 1.1

Snippet info

Language

Cpp

Visibility

public

Author

ilhamsatriaa29

Created

2024-10-12T10:32:14.327111Z

Updated

2024-10-12T10:32:33.726757Z

#include <iostream>
using namespace std;

int main() {
    
    //Ilham Satria Wijaya
    //3420230031
    cout << "Tabel Band Favorit"<<endl;
    cout<<"-------------------------------"<<endl;
    cout<<"| NO |  Nama Band |   Genre   |"<<endl;
    cout<<"| 1  |   Misfits  | Punk Rock |"<<endl;
    cout<<"| 2  |     AFI    |  Pop Punk |"<<endl;
    cout<<"| 3  |  Nightwish |   Metal   |"<<endl;
    cout<<"-------------------------------";
    return 0;
}
INFO