我是用visual c++ 2005~以win32寫的程式~應用程式類別:主控台應用程式~~~
這是我寫的:
#include "stdafx.h"
#include <iostream>
#include <time.h>
#include <stdlib.h>
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
short x, a=1 ,b=100, y;
srand(time(NULL));
y=rand()%100;
l1:cout<<"請猜猜看數字"<<a<<"-"<<b<<":";
cin>>x;
if (x > b) goto l3;
if (x < a) goto l3;
if (x>y) b=x;
if (x<y) a=x;
if (x !=y) goto l1;
cout<<"你猜對了^^"<<endl;
system("pause");
return 0;
l3:cout<<"大哥,你是來亂的啊0.0"<<endl;
system("pause");
goto l1;
}
把創造出來的執行檔使用,正確無誤~但在別台電腦卻無法使用。有爬文,大抵能了解是因為別台電腦不見的有程式所需dll檔。有什麼辦法能讓別台電腦也能使用嗎?`~~感激不盡~(_ _)