原文: https://www.programiz.com/cpp-programming/examples/structure-store-information

该程序将学生的信息(用户输入的姓名,名次和分数)存储在结构中,并将其显示在屏幕上。

要理解此示例,您应该了解以下 C++ 编程主题:


在此程序中,将创建一个结构(学生),其中包含名称,名册和标记作为其数据成员。 然后,创建一个或多个结构变量。 然后,从用户获取数据(名称,名次和标记)并将其存储在结构变量s的数据成员中。 最后,显示用户输入的数据。


示例:使用结构存储和显示信息

  1. #include <iostream>
  2. using namespace std;
  3. struct student
  4. {
  5. char name[50];
  6. int roll;
  7. float marks;
  8. };
  9. int main()
  10. {
  11. student s;
  12. cout << "Enter information," << endl;
  13. cout << "Enter name: ";
  14. cin >> s.name;
  15. cout << "Enter roll number: ";
  16. cin >> s.roll;
  17. cout << "Enter marks: ";
  18. cin >> s.marks;
  19. cout << "\nDisplaying Information," << endl;
  20. cout << "Name: " << s.name << endl;
  21. cout << "Roll: " << s.roll << endl;
  22. cout << "Marks: " << s.marks << endl;
  23. return 0;
  24. }

输出

  1. Enter information,
  2. Enter name: Bill
  3. Enter roll number: 4
  4. Enter marks: 55.6
  5. Displaying Information,
  6. Name: Bill
  7. Roll: 4
  8. Marks: 55.6

在该程序中,创建了student(结构)。

该结构具有三个成员:name(字符串),roll(整数)和marks(浮点)。

然后,创建结构变量s来存储信息并将其显示在屏幕上。