How do I make a program that prompts the user to enter a Horizontal radius, Vertical radius and a center coordinate? So far I have this which only draws a circle after prompting user to enter radius and I don't know where to go from here.
#include <iostream>
#include <Windows.h>
using namespace std;
int main()
{
while (true)
{
system("cls");
int circle_radius;
cout << "Enter radius" << endl;
cin >> circle_radius;