Quick actions

cmd+k|ctrl+k

Navigation

Languages

Tugas 1.1

Snippet info

Language

Cpp

Visibility

public

Author

mhdjekiii

Created

2024-10-25T14:06:56.3494Z

Updated

2024-10-25T14:06:56.3494Z

#include <iostream>
using namespace std;

int main() {
    cout<<"Tabel Brand Favorit"<<endl;
    cout<<"------------------------------"<<endl;
    cout<<"| NO  |  Nama Band  | Genre |"<<endl;
    cout<<"------------------------------"<<endl;
    cout<<"| 1.  |  NOAH       | POP   |"<<endl;
    cout<<"| 2.  |  SLANK      | ROCK  |"<<endl;
    cout<<"| 3.  |  DEWA 19    | ROCK  |"<<endl;
    cout<<"------------------------------";
    return 0;
}
INFO