21xrx.com
2024-11-25 01:18:24 Monday
登录
文章检索 我的文章 写文章
C++初学者代码示例
2023-07-03 21:44:03 深夜i     --     --
C++ programming Beginner's code examples C++ syntax Introduction to C++ Learning C++ basics

C++是一门高级编程语言,学习这门编程语言可以让你了解计算机的底层原理和操作系统的工作方式。C++可以让你创建各种类型的应用程序和游戏,所以它是一个很好的编程语言选择。下面是一些C++初学者代码示例,帮助你快速了解这门编程语言:

1. 打印hello world


#include <iostream>

using namespace std;

int main()

  cout << "Hello

这个简单的程序会在屏幕上输出 “Hello, World!” 。

2. 计算两个数字之和


#include <iostream>

using namespace std;

int main() {

  int a = 5;

  int b = 10;

  int sum = a + b;

  cout << "The sum of " << a << " and " << b << " is " << sum << endl;

  return 0;

}

这个程序定义了两个变量a和b,计算它们的和后输出结果。

3. 判断一个数是否为偶数


#include <iostream>

using namespace std;

int main() {

  int num = 6;

  if(num % 2 == 0)

    cout << num << " is even." << endl;

   else

    cout << num << " is odd." << endl;

  

  return 0;

}

这个程序使用if语句检查一个数是否为偶数。如果是偶数,输出该数是偶数;否则,输出该数是奇数。

4. 输入学生的姓名和年龄,输出学生信息


#include <iostream>

#include <string>

using namespace std;

int main() {

  string name;

  int age;

  cout << "What is your name? ";

  getline(cin, name);

  cout << "What is your age? ";

  cin >> age;

  cout << "Your name is " << name << " and you are " << age << " years old." << endl;

  return 0;

}

这个程序使用了string类型和cin输入流机制,输入学生的姓名和年龄,并输出学生的信息。

总之,以上这些C++代码示例可用于初学者在学习这门编程语言时进行参考和练习。C++的乐趣在于通过编写代码来解决问题,学习C++也是一样的。学习时请勤加实践,这样你才能快速掌握这门编程语言的基本语法和特性。

  
  

评论区

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