Untitled

Anonymous
c_cpp
04/03/2024 5:40 PM
184 B
22
Indexable
#include <iostream>

struct point {
	float x;
	float y;
};
struct circle {
	point center;
	float R;
};

int main() {
	
}
	
Editor is loading...
Leave a Comment