Quick actions

cmd+k|ctrl+k

Navigation

Languages

tugas 1.1

Snippet info

Language

Cpp

Visibility

public

Author

irfanurulaulias

Created

2024-10-25T08:53:48.559132Z

Updated

2024-10-25T08:54:11.567081Z

#include <iostream>
using namespace std;

int main() {
 //Table Band Favorit
    cout<<"Tabel Band Favorit."<<endl;
    cout<<"----------------------------------"<<endl;
    cout<<"| No | Nama Band      | Genre    |"<<endl;
    cout<<"----------------------------------"<<endl;
    cout<<"| 1  | Dewa 19        | Rock     |"<<endl;
    cout<<"| 2  | Juicy Lucy     | Pop      |"<<endl;
    cout<<"| 3  | Vierra         | Pop      |"<<endl;
    cout<<"----------------------------------"<<endl;
cout<<"Nama: Irfa Nurul Aulia Safitri"<<endl;
cout<<"Nim : 1620230021";
    return 0;
}
INFO