Quick actions

cmd+k|ctrl+k

Navigation

Languages

Tugas 1.1

Snippet info

Language

Cpp

Visibility

public

Author

syifanirwana

Created

2024-10-19T03:17:31.700704Z

Updated

2024-10-21T08:09:30.513034Z

#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  | Dewa 19        | Rock  |"<<endl;
    cout<<"| 2  | Nct 127        | K-Pop |"<<endl;
    cout<<"| 3  | Hivi!          | Pop   |"<<endl;
    cout<<"-------------------------------"<<endl;
  
cout<<"Nama: Syifa Asih Nirwana"<<endl;
cout<<"NIM : 1620230019";
    return 0;
}
    
INFO