当我的程序执行时,它会在一行中显示所有“cout(s)”,如下所示,
虽然我希望它逐行显示它们以使我的程序更好!我希望它像这样向他们展示:
Circumference of the circle: (This)
Diameter of the circle: (This)
Area of the circle: (This)
当我的程序执行时,它会在一行中显示所有“cout(s)”,如下所示,
虽然我希望它逐行显示它们以使我的程序更好!我希望它像这样向他们展示:
Circumference of the circle: (This)
Diameter of the circle: (This)
Area of the circle: (This)
使用endl
或\n
:
cout<<"Circumference of the circle:"<<your_value<<endl;
或者
cout<<"Circumference of the circle:"<<your_value<<"\n";
\n
只需在您想要换行的地方打印一个换行符(用 写入)。在 C 中:
printf("The value: %d\n", value);
或者在 C++ 中:
cout << "The value: " << value << "\n";