ubuntu编译cpp的示例:编写c++文件,保存为“test1.cpp”。//-------------ubuntu上.cpp文件编译与运行#include int main(){using namespace std;const int
ubuntu编译cpp的示例:
编写c++文件,保存为“test1.cpp”。
//-------------ubuntu上.cpp文件编译与运行
#include int main()
{
using namespace std;
const int ArSize = 20;
char name[ArSize];
char dessert[ArSize];
cout << "Enter your name:\n";
cin.getline(name, ArSize);
cout << "Enter your favorite dessert:\n";
cin.getline(dessert, ArSize);
cout << "I have some delicious " << dessert;
cout << " for you, " << name << ".\n";
return 0;
}
在终端输入以下命令进行编译。
xxxx@xxxx-xxxxxx-xxxxxxx-xxxxx:~/文档/cppfile$ g++ test1.cpp
会在同目录下生成一个a.out文件。
再输入以下命令运行可执行文件。
xxxx@xxxx-xxxxxx-xxxxxxx-xxxxx:~/文档/cppfile$ ./a.out
Enter your name:
Rawa
Enter your favorite dessert:
Cake
I have some delicious Cake for you, Rawa. //编译运行成功
--结束END--
本文标题: ubuntu如何编译cpp
本文链接: https://lsjlt.com/news/113669.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0