Quick actions

cmd+k|ctrl+k

Navigation

Languages

Tugas 1.1

Snippet info

Language

Cpp

Visibility

public

Author

mhaeqalramadhan01

Created

2024-10-14T06:35:03.797736Z

Updated

2024-10-14T07:01:11.229802Z

#include <iostream>
using namespace std;

int main() {
    //Nama : Muhammad Haeqal Ramadhan
    //NIM : 3420230006
    cout<<"Tabel Band Favorit "<<endl;
    cout<<"--------------------------------------------"<<endl;
    cout<<"| No | Nama Band       | Genre        |"<<endl;
    cout<<"--------------------------------------------"<<endl;
    cout<<"| 1  | Green Day       | Pop Punk     |"<<endl;
    cout<<"| 2  | Stand Here Alone| Pop Punk     |"<<endl;
    cout<<"| 3  | Guns N Roses    | Rock         | "<<endl;
    cout<<"--------------------------------------------"<<endl;
    return 0;
}
INFO