Program in C++
#include
                         Â
//Including library
#include
using namespace std;
int main()
{
   int freq;
   float res, ind;
   cout<<\"enter given
frequency\"<
  Â
cin>>freq;Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
// Given frequency
   cout<<\"Enter capacity in
ohms\"<
  Â
cin>>res;Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
// Given Capacity
   ind = (res/(2*pi*freq));
   cout<<\"Required inductance in
Henry\"<
   cin>>ind;
   return 0;
}