int i=50;
str.Format("%d%",i);
MessageBox(str);
我想显示出50%,这个str.Format()该如何写?
4 个解决方案
#1
str.Format(" %d %%",i);就是50 %
#2
记得好象两个%表示百分号
#3
%d/%
#4
好像str.Format("%d%%",i);就可以吧
#1
str.Format(" %d %%",i);就是50 %
#2
记得好象两个%表示百分号
#3
%d/%
#4
好像str.Format("%d%%",i);就可以吧