使用单独的变量存储学生的姓名、学号、年龄、性别、身高和体重,需要逐个输入学生的基本信息,并使用printf语句将其输出到屏幕上。
时间: 2024-10-10 16:05:27 浏览: 77
在编程中,你可以通过定义结构体(在C/C++中)或者类(在Java、Python等面向对象语言中)来存储学生的全部基本信息。假设我们用C++为例:
```cpp
#include <iostream>
using namespace std;
struct Student {
string name;
int studentID;
int age;
char gender; // 'M' for male, 'F' for female
float height;
double weight;
};
int main() {
Student stu;
cout << "请输入学生姓名:";
getline(cin, stu.name);
cout << "请输入学生学号:";
cin >> stu.studentID;
cout << "请输入学生年龄:";
cin >> stu.age;
cout << "请输入学生性别(M/F):";
cin >> stu.gender;
cout << "请输入学生身高(米):";
cin >> stu.height;
cout << "请输入学生体重(千克):";
cin >> stu.weight;
// 使用printf语句输出学生信息
printf("姓名:%s\n", stu.name.c_str());
printf("学号:%d\n", stu.studentID);
printf("年龄:%d岁\n", stu.age);
printf("性别:%c\n", stu.gender);
printf("身高:%.2f米\n", stu.height);
printf("体重:%.2f千克\n", stu.weight);
return 0;
}
```
在这个程序里,用户可以逐个输入学生的信息,然后使用`printf`函数将这些信息显示出来。
阅读全文