21xrx.com
2024-12-23 01:07:45 Monday
登录
文章检索 我的文章 写文章
使用C++输入学生学号和姓名,并输出
2023-07-05 10:23:24 深夜i     --     --
C++ 输入 学生学号 姓名 输出

C++是一种面向对象的编程语言,在日常学习和工作中使用广泛。它有一个很有用的功能,就是可以通过编写代码来输入学生的学号和姓名,并输出。

首先,我们需要学习如何在C++中输入和输出。输入可以使用cin,输出可以使用cout。下面是一个简单的示例:


#include <iostream>

using namespace std;

int main()

  int num;

  string name;

  cout << "Please input your student number: ";

  cin >> num;

  cout << "Please input your name: ";

  cin >> name;

  cout << "Your student number is " << num << endl;

  cout << "Your name is " << name << endl;

  return 0;

在这个例子中,我们使用了int和string两个变量来存储学生的学号和姓名。然后使用cout输出提示信息,让用户输入学号和姓名。通过cin进行输入,最后使用cout输出学号和姓名。

现在,我们可以用这个例子来输入和输出多个学生的信息。我们可以使用数组来存储多个学生的学号和姓名。


#include <iostream>

using namespace std;

int main()

{

  int num[3];

  string name[3];

  for (int i = 0; i < 3; i++)

  {

    cout << "Please input student " << i+1 << " number: ";

    cin >> num[i];

    cout << "Please input student " << i+1 << " name: ";

    cin >> name[i];

  }

  for (int i = 0; i < 3; i++)

  {

    cout << "Student " << i+1 << " number is " << num[i] << endl;

    cout << "Student " << i+1 << " name is " << name[i] << endl;

  }

  return 0;

}

在这个例子中,我们使用了一个for循环来输入三个学生的信息。然后再使用一个for循环来输出学生的学号和姓名。通过这种方式,我们能够很方便地输入和输出多个学生的信息。

总之,C++是一种功能强大的编程语言,可以用于输入和输出多个学生的学号和姓名。使用cin和cout函数,结合数组等数据结构,我们能够方便地实现这一功能。如果你对C++编程有兴趣,可以尝试自己编写程序,不断提高自己的编程能力。

  
  

评论区

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