编写题解 2922: 合影效果,写的太差了,望指正
摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>typedef struct{ char xb[8]; float high;}stu;……
2922: 合影效果
摘要:```cpp
#include
#include
#include
using namespace std;
typedef struct M
{
string s;
……
编写题解 2922: 合影效果
摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct xs { char sex[20]; float h;};struct xs x[100];struct xs male[……
合影效果(分两个数组来做)
摘要:解题思路:分两个数组,一个数组存男生,一个数组存女生,用strcmp判断男女注意事项:参考代码:#include<stdio.h>
#include<string.h>
int main()
{……
题解 2922:合影效果(看我看我,易懂)
摘要:```c
#include
#include
#include
typedef struct people
{
char sex[7];
float height;
}stu;……