0

文件包含以下形式的电话号码列表:

John            23456
Ahmed        9876
Joe 4568

名称仅包含单词,名称和电话号码用空格分隔。编写一个程序来读取文件并在两列中输出列表。名称应左对齐,数字右对齐。

我能够删除空格并显示它,但无法在输出中对齐它。

#include<iostream>
#include<fstream>
#include<conio.h>
using namespace std;
main()
{
    fstream file,f2;
    file.open("list.txt",ios::in|ios::out);
    f2.open("abcd.txt",ios::out);
    file.seekg(0);

    char ch,ch1;
    file.get(ch);

    while(file)
    {
        ch1 = ch;
        file.get(ch);

        if( ch == ' ' && ch1 != ' ')
        {
            f2.put(ch1);
            f2.put(' ');
        }

        if(ch != ' ' && ch1 != ' ')
            f2.put(ch1);
    }

    file.close();
    f2.close();
    getch();
}
4

2 回答 2

2

最简单直接(没有偏执的输入格式检查):

#include <iostream>
#include <iomanip>
#include <string>
#include <fstream>

int main()
{
    std::ifstream ifs("list.txt");

    std::string name; int val;
    while (ifs >> name >> val)
    {
        std::cout << std::left  << std::setw(30) << name << 
                     std::right << std::setw(12) << val << std::endl;
    }
}

输出:

John                                 23456
Ahmed                                 9876
Joe                                   4568
于 2013-01-29T13:15:35.063 回答
0

您可以简单地在输出流上设置适当的标志(f2在您的情况下是输出流)。请参阅以下文章: http ://www.cplusplus.com/reference/ios/ios_base/width/

对于您的示例,请替换cout为,f2因为它们都是继承自ios_base.

于 2013-01-29T13:10:06.670 回答