-3

当我的程序执行时,它会在一行中显示所有“cout(s)”,如下所示,

一行中的所有 couts

虽然我希望它逐行显示它们以使我的程序更好!我希望它像这样向他们展示:

Circumference of the circle: (This)
Diameter of the circle: (This)
Area of the circle: (This)
4

2 回答 2

0

使用endl\n

cout<<"Circumference of the circle:"<<your_value<<endl;

或者

cout<<"Circumference of the circle:"<<your_value<<"\n";
于 2013-10-25T10:11:36.737 回答
0

\n只需在您想要换行的地方打印一个换行符(用 写入)。在 C 中:

printf("The value: %d\n", value);

或者在 C++ 中:

cout << "The value: " << value << "\n";
于 2013-10-25T10:09:10.470 回答