循环在同一行上多次打印相同的语句

时间:2014-06-27 01:02:42

标签: c++

这个问题似乎非常微不足道,但需要帮助我的for循环打印相同的东西在由空格分隔的同一行上。

    int i;
for (i = 0; i < 3; i++)
    cout << "Can you help me print this on the same line with spaces." << endl;

1 个答案:

答案 0 :(得分:0)

endl或更确切地说,std::endl正在创建一个新行,所以只需从循环中删除它,并记住如果希望它们间隔,则留下一个尾随空格。