21xrx.com
2024-12-28 11:54:25 Saturday
登录
文章检索 我的文章 写文章
标题:有趣的C++代码短篇
2023-07-01 07:33:32 深夜i     --     --
C++代码 有趣 短篇 程序设计 编程挑战

C++是一种功能强大的编程语言,它的代码可以创造出很多有趣的东西。在这篇文章中,我将介绍几个有趣的C++代码短篇。

1. 扫描器音乐

你曾经想象过能用扫描器做出音乐吗?下面这个C++代码可以让你实现这个想法,它会打开扫描仪并用扫描器不同的声音和节奏制作出音乐。


#include <Windows.h>

#include <iostream>

using namespace std;

int main()

{

  for(int i=100; i<20000 ;i+=100)

  {

   Beep(i,30);

   Sleep(30);

  }

  return 0;

}

2. 文字闪烁

下面这段C++代码可以让文字在屏幕上闪烁,给人一种不同寻常的感觉。


#include <iostream>

#include <windows.h>

using namespace std;

int main()

{

  while(true)

  {

   cout << "\r" << "Hello World!";

   Sleep(500);

   cout << "\r" << "      ";

   Sleep(500);

  }

  return 0;

}

3. 颜色变换

如果你想让屏幕上的文本或背景颜色不停地变换,下面这段C++代码可以帮助你实现这个功能。


#include <iostream>

#include <windows.h>

using namespace std;

int main()

{

  while(true)

  {

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

   {

     SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),i);

     cout << "Hello World!" << endl;

     Sleep(100);

   }

  }

  return 0;

}

4. 无限斐波那契数列

斐波那契数列是一列数学上具有重大意义的数,下面这段C++代码可以用一个无限循环输出这个数列。


#include<iostream>

using namespace std;

int main()

{

  int a=1,b=1,c;

  while(1)

  {

    cout << a << " ";

    c=a+b;

    a=b;

    b=c;

  }

  return 0;

}

以上是几个有趣的C++代码短篇,希望能够让你在编程中找到乐趣。

  
  

评论区

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