C++中使用cout << endl 换行问题

刚接触C++,编了一个小程序。以度、分、秒输入纬度,以度输出,程序如下。#include"stdafx.h"#include<iostream>intmain(){usi... 刚接触C++,编了一个小程序。
以度、分、秒输入纬度,以度输出,程序如下。
#include "stdafx.h"
#include <iostream>
int main()
{
using namespace std;
const double zhuanhuan = 60.0;
int degrees,minutes,seconds;
double Degrees;
cout << "Enter a latitude in degrees, minutes, and seconds: \n";
cout << "First, enter the degrees: ";
cin >> degrees;
cout << endl << "Next, enter the minutes of arc: ";
cin >> minutes;
cout << endl << "Finally, enter the seconds of arc: ";
cin >> seconds;
cout << endl << degrees << " degrees, " << minutes << " minutes, " << seconds << " seconds = ";
Degrees = (seconds / zhuanhuan + minutes) / 60 + degrees;
cout << Degrees << " degrees\n";
cout << "Press any key to return.";
cin.get();
cin.get();
return 0;
}

为什么输出中多空了几行?
<!--<!--<!--
展开
 我来答
White_MouseYBZ
推荐于2018-03-08 · TA获得超过4万个赞
知道大有可为答主
回答量:2.1万
采纳率:82%
帮助的人:6616万
展开全部
比如First ,enter the degrees: 37这一行——你输入37时已经打入一个回车了,下面接着cout << endl << "Next, enter the minutes of arc: ";中的<<endl还要回车一次,就两次了。把类似cout << endl << "Next, enter the minutes of arc: ";中的<< endl删除即可。
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式