这是一段 C++ 代码,实现了在控制台输出一个由字符组成的爱心图案,其中包含 "李欣怡" 三个字。
#include <iostream>
#include <cmath>
int main()
{
std::cout << "李欣怡" << std::endl;
std::cout << " ♥" << std::endl;
std::cout << " ♥ ♥" << std::endl;
std::cout << "♥ ♥ ♥" << std::endl;
std::cout << " ♥ ♥" << std::endl;
std::cout << " ♥" << std::endl;
return 0;
}
运行后的输出结果如下:
李欣怡 ♥
♥ ♥
♥ ♥ ♥
♥ ♥
♥
注意:在 C++ 中,需要使用 std::cout
来输出到控制台,而 std::endl
是换行符。此外,在 C++ 中,可以使用 "♥"
来表示爱心的字符。