xudadi001 2023-09-05 20:10 采纳率: 40%
浏览 6

这个地方为什么会有换行和空格

#include <iostream>

using namespace std;

struct box{
    char maker[40];
    float height;
    float width;
    float length;
    float volume;
};

void show(box x);
box xie(box x);


int main(){
    box temp;
    box xi=xie(temp);
    show(xi);
}

void show(box x){
    cout << "\nThe maker of the box is " << x.maker << "." << endl;
    cout << "The height of the box is " << x.height << "." << endl;
    cout << "The width of the box is " << x.width << "." << endl;
    cout << "The length of the box is " << x.length << "." << endl;
    cout << "The volume of the box is " << x.volume << "." << endl;
}

box xie(box x){
    box xt=x;
    cout << "The following is the example box."<<endl;
    cout << "Please enter the box maker: ";
    cin >> xt.maker;
    cout << "Please enter the height: ";
    cin >> xt.height;
    cout << "Please enter the width: ";
    cin >> xt.width;
    cout << "Please enter the length: ";
    cin >> xt.length;
    cout << "Please enter the volume: ";
    cin >> xt.volume;
    return xt;
}

img


原图:

img

  • 写回答

2条回答 默认 最新

  • threenewbee 2023-09-05 20:17
    关注

    是你的环境的问题,程序本身是没有换行和空格的。你可以直接运行生成的exe看看

    评论

报告相同问题?

问题事件

  • 创建了问题 9月5日

悬赏问题

  • ¥15 付费求做一个自助抢单插件
  • ¥15 bat批处理,关于数据复制问题
  • ¥50 同步两个不同结果的array中某些属性
  • ¥15 悬赏15远程操控解决问题
  • ¥15 CST复制的模型无法单独修改参数?
  • ¥15 前端页面想做个定时任务,但是使用requestAnimationFrame,setinterval和settimeout都不行
  • ¥15 根据以下文字信息,做EA模型图
  • ¥15 删除虚拟显示器驱动 删除所有 Xorg 配置文件 删除显示器缓存文件 重启系统 可是依旧无法退出虚拟显示器
  • ¥15 vscode程序一直报同样的错,如何解决?
  • ¥15 关于使用unity中遇到的问题