![cpp](https://habrastorage.org/r/w120/webt/5a/80/ee/5a80eee835721314512847.png)
C++
1
Вклад в тег
#include <iostream>
#include <string>
using namespace std;
struct Vector {
float x, y, z;
};
int main()
{
Vector v;
v.x=15, v.y=25, v.z=35;
cout << v.x << endl;
system("pause");
return 0;
}