标题:请各位帮忙看看
只看楼主
saihuo092617
Rank: 1
等 级:新手上路
帖 子:14
专家分:0
注 册:2012-9-1
结帖率:25%
已结贴  问题点数:5 回复次数:1 
请各位帮忙看看
#include <stdio.h>
#include <ctype.h>
#define  MAXLINE  100
#define  DCTLEN    6

main()
{
  int c, pos;
  int inc(int pos, int n);
   
  pos = 0;
  while((c = getchar()) != EOF)  
      if(iscntrl(c) || c == ' ')
      {
        pos = inc(pos, CETLEN);
        printf("\\%03o",c);
        
        if(c == '\n')
        {
            pos = 0;
            putchar('\n');
        }
      }
        else
        {
        
          putchar(c);
        }
      return 0;
}


int inc(int pos, int n)
{
  if(pos + n < MAXLINE)
      return pos + n;
  else
  {
    putchar('\n')
        return n;
  }
  
}

题目要求: 编写一个程序,以合理的方式打印任何输入。 该程序至少能根据用户的习惯以八进制或十六进制打印非显示字符,并截断长文本行。

程序中的POS起到什么作用?它的作用显现在哪里? printf("\\%03o",c); \\%03o 是什么意思?还有截断文本行的是那一段程序?
搜索更多相关主题的帖子: return include pos 
2012-09-21 17:13
pauljames
Rank: 19Rank: 19Rank: 19Rank: 19Rank: 19Rank: 19
等 级:千里冰封
威 望:9
帖 子:1555
专家分:10000
注 册:2011-5-8
得分:5 
pos起到截断的作用,具体在inc函数中体现;\\%03o中第一个\表示输出后面的转义字符\,后面的表示输出格式

经常不在线不能及时回复短消息,如有c/单片机/运动控制/数据采集等方面的项目难题可加qq1921826084。
2012-09-24 07:09



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




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

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