最近在作一個實驗題:輸出一個點移動一個點。如果大神們有更簡單的方法,請指點。
這個是成果,很有趣
望大神們指點一二:
#include<iostream>
#include<stdlib.h>
#include<windows.h>
#include<conio.h>
#include<math.h>
using namespace std;
class aaa
{
int x;
int y;
int x1;
int y1;
public:
aaa()
{
x=y=x1=y1=10;
}
void bbb();
~aaa(){
}
};
void ccc(int a,int b)
{
int i;
system("cls");
for(i=0;i<b;i++)
cout<<endl;
for(i=0;i<a-1;i++)
{cout<<' ';
} cout<<"*";
}
void aaa::bbb()
{
char ch;
int a,b;
a=x1;
b=y1;
cout<<"原點坐標:"<<"("<<x<<","<<y<<")"<<endl;
cout<<"該程序通過w,s,a,d實現*的上下左右移動,輸入空格結束"<<endl;
cout<<"*";
ch=getch();
while(1)
{
ch=getch();
switch(ch)
{
case 'w':b=b-1;break;
case 's':b=b+1;break;
case 'a':a=a-1;break;
case 'd':a=a+1;break;
default:break;
}
ccc(a,b);
if(ch==' ')
{
int sum=0;
cout<<"最終坐標:"<<"("<<a<<","<<b<<")"<<endl;
sum=aqrt((a-10)(a-10)+(b-10)(b-10));
cout<<"兩點間的距離="<<sum<<endl;
break;
}
}
}
int main()
{
aaa lol;
lol.bbb();
return 0;
}