Quick actions

cmd+k|ctrl+k

Navigation

Languages

Tugas 1.1

Snippet info

Language

Cpp

Visibility

public

Author

rosdianafitriyani

Created

2024-10-19T02:31:51.133745Z

Updated

2024-10-19T03:11:47.867211Z

#include <iostream>
using namespace std;

int main() {
    // Table Band Favorite
    // ----------------------------
    // | No | Nama Band   | Genre |
    // ----------------------------
    // | 1  | BTS         | K-POP |
    // | 2  | Bernadya    | Pop   |  
    // | 3  | Juicy Luicy | Pop   | 
    // ---------------------------------
    //Nama : Rosdiana Fitriyani
    //NIM  : 1620230020
    cout<<"Nama : Rosdiana Fitriyani"<<endl;
    cout<<"NIM  : 1620230020"<<endl;
    cout<<"Table Band Favorite"<<endl;
    cout<<"----------------------------"<<endl;
    cout<<"| No | Nama Band   | Genre |"<<endl;
    cout<<"----------------------------"<<endl;
    cout<<"| 1  | BTS         | K-POP |"<<endl;
    cout<<"| 2  | Bernadya    | Pop   |"<<endl;
    cout<<"| 3  | Juicy Luicy | Pop   |"<<endl;
    cout<<"----------------------------";
    return 0;
}
INFO