Code:
#include <iostream>
using namespace std;
#include <math.h>
int main(void)
{
//define variables
float num1;
float num2;
//enter data for the variables
std::cout << "Enter a value for the first variable: ";
std::cin >> num1;
std::cout << "Enter
Leave a comment: