21xrx.com
2024-11-22 07:12:01 Friday
登录
文章检索 我的文章 写文章
"C++有趣的代码集锦:奇思妙想的编程之旅!"
2023-07-10 11:10:18 深夜i     --     --
C++ 代码集锦 奇思妙想 编程之旅 有趣

C++是一门强大的编程语言,可以让程序员在编写代码时发挥创造力和想象力。下面我们将介绍一些有趣的C++代码,让你在编程之旅中感受到奇思妙想的魅力!

1. 打印三角形

在这个程序中,我们使用嵌套的循环来打印一个三角形。它很简单,但却很有趣!

#include

using namespace std;

int main()

{

  int rows = 5;

  for(int i = 1; i <= rows; ++i)

  {

   for(int j = 1; j <= i; ++j)

   {

     cout << "* ";

   }

   cout << endl;

  }

  return 0;

}

2. 取模运算

取模运算(%)是一个有趣的运算符,可以用来判断一个数是否为偶数。如果一个数能被2整除,那么它就是偶数。

#include

using namespace std;

int main()

{

  int num = 5;

  if (num % 2 == 0)

   cout << num << " is even";

  else

   cout << num << " is odd";

  return 0;

}

3. 猜数字游戏

这是一个简单的猜数字游戏,让你感受到C++的趣味性。我们使用随机数生成器来生成一个随机数,然后让用户猜这个数字。

#include

#include

#include

using namespace std;

int main()

{

  int num, guess, tries = 0;

  srand(time(0));

  num = rand() % 100 + 1;

  cout << "Guess My Number Game\n\n";

  do

  {

   cout << "Enter a guess between 1 and 100 : ";

   cin >> guess;

   tries++;

   if (guess > num)

     cout << "Too high!\n\n";

   else if (guess < num)

     cout << "Too low!\n\n";

   else

     cout << "\nCorrect! You got it in " << tries << " guesses!\n";

  } while (guess != num);

  return 0;

}

4. 字符串反转

这个程序可以反转一个字符串。我们使用一个for循环和一个临时变量来完成这个任务。

#include

#include

using namespace std;

int main()

{

  char str[100], temp;

  int len, i, j;

  cout << "Enter a string : ";

  cin >> str;

  len = strlen(str);

  for(i=0, j=len-1; i

  {

   temp = str[i];

   str[i] = str[j];

   str[j] = temp;

  }

  cout << "Reverse of the string is : " << str << endl;

  return 0;

}

总结:

C++是一门非常有趣的编程语言,可以让你在编程的过程中发挥创造力和想象力。通过以上介绍的有趣代码,你可以感受到C++的魅力,也可以用它们来丰富你的编程技术。希望这些代码能够激发你的灵感,让你在编程之旅中走得更远!

  
  

评论区

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