You really can't think of anything to do with an if-else? How about doing different things based on user input? Are you stuck on something that is preventing you from programming what you want to program?
This is a forum for C++, and although C++ supports C, you shouldn't use C. It would be much easier to use standard C++ input/output streams, such as std::cin and std::cout.
1 2 3
std::cout << "Is the circuit parallel or series?" << std::endl;
std::string MyStandardStringVariable;
std::cin >> MyStandardStringVariable;
You need to #include <string> to use std::string. Then you can just check if the string equals "parallel" or if it equals "series", else they enetered invalid input.