Quick actions

cmd+k|ctrl+k

Navigation

Languages

Tugas 1.1

Snippet info

Language

Cpp

Visibility

public

Author

sarahahmadmaula1104

Created

2024-10-19T03:16:17.187503Z

Updated

2024-10-19T12:34:24.794087Z

#include <iostream>
using namespace std;
int main() {
    cout<<"Table Band Favorite"<<endl;
    cout<<"-----------------------------------"<<endl;
    cout<<"| No | Nama Band        |Genre    |"<<endl;
    cout<<"-----------------------------------"<<endl;
    cout<<"| 1  | Juicy Lucy       | Pop     |"<<endl;
    cout<<"| 2  | Dewa 19          | Rock    |"<<endl;
    cout<<"| 3  | Vierratale       | Pop Rock|"<<endl;
    cout<<"-----------------------------------"<<endl;
    
cout<<"Nama : Sarah Ahmad Maula"<<endl;
cout<<"Nim  : 1620230013"<<endl;
    return 0;

}
INFO