标题:printf的问题
取消只看楼主
周章明
Rank: 1
等 级:新手上路
帖 子:16
专家分:0
注 册:2013-4-28
结帖率:50%
已结贴  问题点数:10 回复次数:3 
printf的问题
江湖救急:
 char format[10] = "%";
printf(format, array[j]);
为什么可以这样使用呢?
而不是
printf("%c",array[i]);?
搜索更多相关主题的帖子: 江湖 
2013-05-10 16:52
周章明
Rank: 1
等 级:新手上路
帖 子:16
专家分:0
注 册:2013-4-28
得分:0 
这样编译可以通过,但我就是不知道为什么?不知道你能否解释一下。
2013-05-10 18:15
周章明
Rank: 1
等 级:新手上路
帖 子:16
专家分:0
注 册:2013-4-28
得分:0 
我看了函数原型,可是这不能跟这个对上。
2013-05-11 08:58
周章明
Rank: 1
等 级:新手上路
帖 子:16
专家分:0
注 册:2013-4-28
得分:0 
#include <stdio.h>
#include <string.h>
#include <ctype.h>

#define MAX_COUNT 100

void show(double array[], size_t array_size, unsigned int field_width);

void main()
{
  double array[MAX_COUNT] = {0.0};
  int count = 0;
  char answer = 'n';
  do
  {
    printf("Enter a value: ");
    scanf("%lf", &array[count++]);
    printf("Do you want to enter another (y or n)?: ");
    scanf(" %c",&answer);
  }while(count<= MAX_COUNT && tolower(answer) == 'y');

  show(array, count, 12);
  
   printf("\n");
}

void show(double array[], size_t array_size, unsigned int field_width)
{
  char format[10] = "%";   
  char width_str[4];      
  size_t i = 0;
  size_t j = 1;


  do
  {
    width_str[i++] = '0'+field_width%10;
  }while((field_width /= 10) != 0);


  do
  {
    format[j++] = width_str[--i];
  }while(i>0);
  format[j] = '\0';
  strcat(format, "lf");     /* Append specification for double */


  for(j = 0 ; j<array_size ; j++)
  {
    if(j%5 == 0)
      printf("\n");
    printf(format, array[j]);
  }
}
这就是这道题。您可以看一下。
2013-05-11 09:20



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-406747-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.743317 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved