Chinaunix首页 | 论坛 | 博客
  • 博客访问: 47052
  • 博文数量: 33
  • 博客积分: 1301
  • 博客等级: 中尉
  • 技术积分: 335
  • 用 户 组: 普通用户
  • 注册时间: 2008-08-31 21:06
文章分类
文章存档

2009年(33)

我的朋友

分类: C/C++

2009-06-22 16:55:42

Exercise 1-20. Write a program detab that replaces tabs in the input with the proper numberof blanks to space to the next tab stop. Assume a fixed set of tab stops, say every n columns.Should n be a variable or a symbolic parameter?
 
 

#include<stdio.h>

#define TABWIDTH 8

int main(){
    char s[200], c;
    int len, t;

    len = 0;
    while((c = getchar()) != '\n'){
        if(c != '\t')
            s[len++] = c;
        else
            for(t = TABWIDTH - len % TABWIDTH; t > 0; t--)
                s[len++] = ' ';
    }
    s[len++] = c;
    s[len] = '\0';
    
    printf("%s", s);
}

阅读(520) | 评论(0) | 转发(0) |
0

上一篇:Exercise 1-13

下一篇:Exercise 2-4, 2-5

给主人留下些什么吧!~~