Untitled
unknown
c_cpp
2 years ago
174 B
9
Indexable
#include <iostream>
#include <string>
using namespace std;
struct point {
float x;
float y;
};
int main() {
point dote;
std::cin >> dote.x >> dote.y;
}Editor is loading...
Leave a Comment