TAB

One of the works done by our Robotics and Machine Learning division,
SELF-LEVELING QUADCOPTER
Arduino based Quadcopter.
Self-leveling is acheived by the aligning the quadcopter using the readings from the gryo as well as the accelerometer.
A four channel RC transmitter is used to control the movement of the quadcopter when in flight. Kindly subscribe to our YouTube Channel and stay tuned.

Tuesday 8 March 2016

PRACTICE PROBLEM : Area function overload

#include<iostream>
#include<iomanip>
using namespace std;
float area(float a,float b)
{
return a*b;
}
float area(float t,float b,float h)
{
return(h*(t+b)/2);
}
float area(float r)
{
return 3.14*r*r;
}

No comments:

Post a Comment