Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.67K
1 Posted Topic
float y, k; cout << "Enter the Radius of the desired circle size" ; cin >> y; float m = 2; for (int i = -y; i <= y; i++) { for (int j = -y; j <= y; j++) { k = ((i * m) / y) * ((i …
The End.
f200196