Quick actions

cmd+k|ctrl+k

Navigation

Languages

Tugas 1.1

Snippet info

Language

Cpp

Visibility

public

Author

alvianrohmadianwari123

Created

2024-10-14T05:39:50.478427Z

Updated

2024-10-14T05:39:50.478427Z

#include <iostream>
using namespace std;
// Nama : Alvian Rohmadi Anwari
// Nim  : 3420230007

int main() {
    cout << "Tabel Anime Favoritku "<<endl;
    cout << "-----------------------------  "<<endl;
    cout << "| NO | Nama Anime   | Genre  | "<<endl;
    cout << "------------------------------ "<<endl;
    cout << "| 1  | One Piece    | Action | "<<endl;
    cout << "| 2  | Black Clover | Action | "<<endl;
    cout << "| 2  | AOT          | Action | "<<endl;
    cout << "------------------------------ "<<endl;
    
    
    return 0;
}
INFO