Get the square and cube of a float type number : Float « Data Type « C++






Get the square and cube of a float type number

  
#include <iostream>
using namespace std;
float square_num(float num);
float cube_num(float num);
int main()
{
  int choice;
  float answer;
  answer = square_num(1.2);
  answer = cube_num(1.2);
  cout << "Your answer is " << answer <<" \n";
  return 0;
}
float square_num(float num)
{
   float a;
   a = num * num;
   return a;
}
 
float cube_num(float num)
{
  float a;
  a = num * num * num;
  return a;
}
  
    
  








Related examples in the same category

1.10.0 would be interpreted as floating point10.0 would be interpreted as floating point
2.Make the result of integer division a floatMake the result of integer division a float
3.Enter hexadecimal digits and a floating-point numberEnter hexadecimal digits and a floating-point number
4.cin to read float in C++cin to read float in C++
5.Float value pointer and int value pointerFloat value pointer and int value pointer
6.Demonstrates the definition and use of references.Demonstrates the definition and use of references.
7.Return float type from function