Cho chuỗi
s, viết chương trình di chuyển chữ từ
bên trái qua bên phải của màn hình tại dòng 5.
Quá trình di chuyển dừng lại khi ta ấn ESC
#include<iostream.h>
#include<conio.h>
#include <windows.h>
void gotoxy(int x,int y)
{
HANDLE hStdout = GetStdHandle(STD_OUTPUT_HANDLE) ; // code design by SEO ANH
COORD position = {x,y} ;
SetConsoleCursorPosition(hStdout,position ) ;
}
int main()
{
char *chuoi=" Hello";
cout<<"1\n2\n3\n4\n5";
for(int i=1;i<=73;i++)
{
gotoxy(i,4);
cout<<chuoi;
Sleep(100);
if(GetKeyState(VK_ESCAPE) & 0x8000) goto thoat;
}
thoat: cout<<endl<<endl;
return 0;
}
Nhãn bài viết: Chia-se | Hoc-tap