document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. #include <iostream>
  2. #include <conio.h>
  3. using namespace std;
  4. char *nama()
  5. {
  6.     return ("Anggota kelompok kami : \\n - Angga \\n - Azriel \\n - Iman \\n - Iqbal ");
  7. }
  8. int main()
  9. {
  10.     cout << "//////////////////////////////////////////////////////////" << endl;
  11.     cout << "// =================== Kelompok 3 ===================== //" << endl;
  12.     cout << "// ====================  X-RPL 1  ===================== //" << endl;
  13.     cout << "//////////////////////////////////////////////////////////" << endl;
  14.     cout << nama();
  15.     return 0;
  16.     getch();
  17. }
');