This is a code of C++ programming to find mean of 3 numbers. #include using namespace std; int main () { float a,b,c,mean; //header cout<<"Created by Sorawich Chanjirakitti Visit my blog at www.sorawich.com"<>"; cin>> a; cout<<"Enter the second number >>"; cin>> b; cout<<"Enter the third number >>"; cin>> c; //process mean=(a+b+c)/3; //output cout<<"Result is :"<