先将int转化成字符串,再作为textout参数CString str;str.Format("%d", n);TextOut(hDC, x, y, str, str.GetLength());
要先转成字符串可以用 itoa函数 或者cstring类的 format函数 ,或者 printf