21xrx.com
2024-11-22 07:35:26 Friday
登录
文章检索 我的文章 写文章
C++爱心代码大全
2023-07-13 01:44:14 深夜i     --     --
C++ 爱心代码 大全 编程 创意

C++是一种广泛使用的计算机编程语言,它在各种领域中都有广泛的应用。除了使用C++编写实用的软件,你还可以使用这种语言编写一些有趣的代码,比如爱心代码。下面我们就来介绍一些关于C++爱心代码的大全。

1、基础爱心代码

#include

using namespace std;

int main() {

  cout << "  **   **" << endl;

  cout << " ****** ******" << endl;

  cout << "****************" << endl;

  cout << " **************" << endl;

  cout << " ************" << endl;

  cout << "  ********" << endl;

  cout << "   ****" << endl;

  cout << "    *" << endl;

  return 0;

}

2、用字符符号打印爱心

#include

using namespace std;

int main() {

  char c = 3;

  for(int i=1; i<12; i++){

    for(int j=1; j<80; j++){

      double dist = sqrt(pow(i-6,2)+pow(j-40,2));

      if(dist<12){

        cout << c;

      }else{

        cout << " ";

      }

    }

    cout << endl;

  }

  return 0;

}

3、绘制3D爱心

#include

#include

using namespace std;

int main() {

  double x, y, z, r;

  for(double i=0; i<2.1; i+=0.1){

    for(double j=0; j<2.1; j+=0.1){

      x = 16*sin(i)*sin(i)*sin(i);

      y = 13*cos(i)-5*cos(2*i)-2*cos(3*i)-cos(j);

      z = 16*sin(j)*sin(j)*sin(j);

      r = sqrt(x*x+y*y+z*z);

      if(r>15.5&&r<16.5){

        cout << " ";

      }else{

        cout << "O";

      }

    }

    cout << endl;

  }

  return 0;

}

无论哪种语言,编程都是一种有趣的经历,用心编写代码也能找到快乐,更具创意的代码更能让人对编程产生兴趣,C++爱心代码就是其中一种。希望大家在编写爱心代码的过程中注意语法和细节,更好地理解计算机编程语言,为以后的编程道路打下坚实基础。

  
  

评论区

{{item['qq_nickname']}}
()
回复
回复