Quick actions

cmd+k|ctrl+k

Navigation

Languages

Tugas 1.1

Snippet info

Language

Cpp

Visibility

public

Author

dhafinshabir610

Created

2024-10-12T10:36:53.033197Z

Updated

2024-10-12T10:36:53.033197Z

#include <iostream>
using namespace std;

/*
Nama : Dhafin Shabir Alfatih
NIM  : 3420230036
*/

int main() {
  cout<<"         Tabel Band Favorit\n";
  cout<<"------------------------------------"<<endl;
  cout<<"| No | Nama Band           | Genre |"<<endl;
  cout<<"------------------------------------"<<endl;
  cout<<"| 01 | New Jeans           | K-Pop |"<<endl;
  cout<<"| 02 | Girl in Red         | Pop   |"<<endl;
  cout<<"| 03 | Two Door Cinema     | Rock  |"<<endl;
  cout<<"------------------------------------"<<endl;
  return 0;
}
INFO