Quick actions

cmd+k|ctrl+k

Navigation

Languages

Tugas 1.1

Snippet info

Language

Cpp

Visibility

public

Author

dendiromadon462

Created

2024-10-13T07:55:25.501727Z

Updated

2024-10-13T07:55:39.787518Z

#include <iostream>
using namespace std;

int main() {
    
    //Dendi Yusro Romadon
    //3420230013
    cout << "Tabel Band Favorit"<<endl;
    cout<<"-------------------------------"<<endl;
    cout<<"| NO |  Nama Band  |   Genre   |"<<endl;
    cout<<"| 1  | For Revenge |   Metal   |"<<endl;
    cout<<"| 2  | The Jansen  |Alternative|"<<endl;
    cout<<"| 3  |  Iwan Fals  |   Rock    |"<<endl;
    cout<<"-------------------------------";
    return 0;
}
INFO