Quick actions

cmd+k|ctrl+k

Navigation

Languages

Tugas 1.1

Snippet info

Language

Cpp

Visibility

public

Author

kesakamila1

Created

2024-10-26T00:49:23.961978Z

Updated

2024-10-26T00:49:23.961978Z

#include <iostream>
using namespace std;

int main() {
    //Tabel Favorit
    cout<<"Tabel Band Favorite"<<endl;
    cout<<"------------------------------"<<endl;
    cout<<"|No|Nama Band          |Genre|"<<endl;
    cout<<"------------------------------"<<endl;
    cout<<"| 1 |Vierra            |Pop  |"<<endl;
    cout<<"| 2 |BTS               |K-Pop|"<<endl;
    cout<<"| 3 |Slank             |Rock |"<<endl;
    cout<<"------------------------------"<<endl;
    
    cout<<"Kesa Kamila"<<endl;
    return 0;
}
INFO