Quick actions

cmd+k|ctrl+k

Navigation

Languages

Tugas1.1

Snippet info

Language

Cpp

Visibility

public

Author

airinemeidiana

Created

2024-10-12T10:17:59.459123Z

Updated

2024-10-18T17:45:25.67649Z

#include <iostream>
using namespace std;


int main() {
    //Nama  : Airine Meidiana
    //NIM   : 3420230024
    cout<<"Tabel Band Favorit"<<endl;
    cout<<"=========================================="<<endl;
    cout<<"| No | Nama Band             | Genre     |"<<endl;
    cout<<"=========================================="<<endl;
    cout<<"| 1  | Sheila on 7           | Pop       |"<<endl;
    cout<<"| 2  | NDX                   | Dangdut   |"<<endl;
    cout<<"| 3  | One Direction         | Pop       |"<<endl;
    cout<<"=========================================="<<endl;
    return 0;
}
INFO