Quick actions

cmd+k|ctrl+k

Navigation

Languages

Tanpa Judul

Snippet info

Language

Cpp

Visibility

public

Author

sandyrencakaprawa

Created

2025-10-15T02:00:45.257297Z

Updated

2025-10-15T02:21:01.026612Z

#include <iostream>
using namespace std;

int main() {
  int nilai[2][3] = {
      {80, 85, 90}
      {75, 70, 88}
};
 cout << nilai [0][1]; // Menampilkan angka 85

return 0;
}
INFO