break后面多了个2,;后少了}。改成break;}就行了……
PF_MAX 在WinSock.h 中定义为常量了。你这里不能用这个名字, 换一个例如PF_M就好了
PF_MAX 在WinSock.h 中定义为常量了。你这里不能用这个名字, 换一个例如PF_M就好了
while( choice '1'||choice '8'&&choice!='q');这一句话本身就是错误的,个人估计是想这么写的 while( choice <= '1'|| choice >= '8'&&choice!='q');望采纳
include <ctime> define N 50 using namespace std;void InsertSort(int r[]){ int x=0,y=0;for(int i=1;i<N;i++){ int s=r[i];int low=0;int high=i-1;x++;while(low <= high){ int mid=(low+high)/2;x++;if(s < r[mid]){ high=mid-1;y++;} else { low=...
char buf[128];::sprintf(buf, "Angle: %d", (int)GetAngularDemoAngle());::TextOutA(hdc, block.left, block.top, buf, ::strlen(buf));你把 " 打成 ? 了