Advertisement
Guest User

Untitled

a guest
Dec 21st, 2014
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. #include <iostream.h>
  2. #include <conio.h>
  3. //prototipe fungsi gatewan.com
  4. void tampilkan_judul();
  5. void line();
  6.  
  7. //fungsi utama
  8. void main()
  9. {
  10. clrscr();
  11. tampilkan_judul();
  12. line();
  13. getch();
  14. }
  15.  
  16. //definisi fungsi
  17. void line()
  18. {
  19. cout<<"======================================="<<endl;
  20. }
  21.  
  22. void tampilkan_judul()
  23. {
  24. cout<<"GATEWAN"<<endl;
  25. cout<<"alamat : www.gatewan.com"<<endl;
  26. cout<<"Yogyakarta"<<endl;
  27.  
  28. return;
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement