Chinaunix首页 | 论坛 | 博客
  • 博客访问: 191353
  • 博文数量: 38
  • 博客积分: 2010
  • 博客等级: 大尉
  • 技术积分: 424
  • 用 户 组: 普通用户
  • 注册时间: 2009-06-19 12:41
文章分类

全部博文(38)

文章存档

2017年(2)

2016年(1)

2010年(8)

2009年(27)

我的朋友

分类: C/C++

2009-12-17 14:30:33

百分比的计算在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) |
给主人留下些什么吧!~~