TI

Pertanyaan

kode turbo c++ yang mengggunakan fungsi gotoxy

1 Jawaban

  • #include<iostream.h>
    #include<conio.h>
     int main() {
     clrscr();
     gotoxy(5,3); cout<<"HELLO WORLD";
     gotoxy(60,10); cout<<"HELLO WORLD";
     gotoxy(35,20); cout<<"HELLO WORLD";
     getch();
     return 0;
     }

Pertanyaan Lainnya