#include <iostream>
#include<cstring>
int main()
{
using namespace std;
struct computer
{
char brand[20];
float price;
}com1 = { "Dell",5000 }, com2;
cout << "电脑品牌" << com1.brand << ",价格:" << com1.price << endl;
#include <iostream>
#include<cstring>
int