Quick actions

cmd+k|ctrl+k

Navigation

Languages

Tugas1.1

Snippet info

Language

Cpp

Visibility

public

Author

mikoshiba27

Created

2024-10-12T10:35:23.890891Z

Updated

2024-10-14T06:38:09.162107Z

#include <iostream>
using namespace std;

int main() {
    //Miko Ardiansyah
    //3420230005c
    cout<<"----------------------------------"<<endl;
    cout<<"Tabel band favorit"<<endl;
    cout<<"----------------------------------"<<endl;
    cout<<" | No | Nama Band     | Genre |"<<endl;
    cout<<"----------------------------------"<<endl;
    cout<<" | 1  | Ecstasy       | Rock  |"<<endl;
    cout<<" | 2  | Big Fish      | Kpop  |"<<endl;
    cout<<" | 3  | Mudslide      | Rock  |"<<endl;
    cout<<"----------------------------------"<<endl;
    return 0;
}
INFO