windows编程中,textout()函数怎样才能将int变量输出

最好详细点
2024-12-22 17:16:51
推荐回答(2个)
回答1:

先将int转化成字符串,再作为textout参数
CString str;
str.Format("%d", n);
TextOut(hDC, x, y, str, str.GetLength());

回答2:

要先转成字符串
可以用 itoa函数 或者cstring类的 format函数 ,或者 printf