如何在C ++的下一行打印我的名字

时间:2016-03-21 13:07:25

标签: c++

我想用新行打印我的名字十次。这是我的代码:

#include "stdafx.h"

#include<iostream>


using namespace std;
void main()
{



    int i;

    for (i = 1; i <= 10; ++i)
        cout <<   "krishna "  ;
    getchar();

}

在第一行打印后我需要休息或“\ n”。怎么做到的?

2 个答案:

答案 0 :(得分:0)

你不应该使用std :: endl;

dexOptions {
        javaMaxHeapSize "4g"
}

确实(在评论之后)更好地使用&#39; \ n&#39; (仅限Windows)

查看此常见问题解答 - &gt; https://localhost:9002/cmscockpit/index.zul

答案 1 :(得分:0)

你可以使用两个endl或'\ n'。你的代码看起来像这样 -

for (i=1;i<=10;i++)
cout<<"Krishna\n";