Untitled

 avatar
unknown
c_cpp
a year ago
136 B
6
Indexable
#include <iostream>

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

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