百分比的计算在C语言中偶会用到,比如在计算进度条、比例中.
下面给出一个示例程序:
int total,current,percent;
char szBuf[16];
total = 7;
current = 1;
percent = (float)progress_current_cnt / (float)progress_total_cnt;
sprintf(szBuf, "%2.0f%%", ((float)progress_current_cnt/(float)progress_total_cnt)*100);
printf("percent is %d, szBuf is %s\n", percent, szBuf);
其中%是个特殊字符,要显示它,必须要在其前面多加一个%.
如果遇到下面这种使用方式:
va_start(vaMarker, str);
vsprintf(TheBuff,(const char*)str,vaMarker);
va_end(vaMarker);
会过滤调一个实际显示的%,因此szBuf可能会这样赋值:
sprintf(szBuf, "%2.0f%%%%", ((float)progress_current_cnt/(float)progress_total_cnt)*100);
阅读(2810) | 评论(0) | 转发(0) |