gpt4 book ai didi

c++,连接 Hpp 和 Cpp

转载 作者:太空狗 更新时间:2023-10-29 20:56:24 26 4
gpt4 key购买 nike

<分区>

/*Header.h file*/

#include <iostream>
using namespace std;

int main(){
/*Menu*/
/*case1:

int x;
cout << "Input ammount:";
cin >> x
sugarcake(x)*/

/*case2:

something else

*/
}

/*sugarcake.cpp file*/

#include <iostream>
#include "Header.h"
using namespace std;

void sugarcake(int x) {
cout << (x * 0.75) << "st egg" << endl;
cout << (x * 0.75) << "dl sugar" << endl;
cout << (x * 0.5) << "tsk vanillasugar" << endl;
cout << (x * 0.5) << "tsk blabla" << endl;
cout << (x * 0.75) << "dl wheatflour" << endl;
cout << (x * 18.75) << "gram butter" << endl;
cout << (x * 0.25) << "dl water" << endl;
}

我如何完成这项工作,或者我对它的理解完全错误? (昨天开始使用 C++,所以请多关照,我在其他地方找不到适合我的明确答案)
TL DR:在 Header.h 中的 sugarcake.cpp 中调用函数 sugarcake(int x)

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com