hello, first of all welcome, secondly someone please help me? this wont compile :(
#include <iostream>
int main() {
float pi;
float radius;
float area;
pi = 3.1415926535;
radius = 2;
area = radius * pi;
std::cout << "The area of a circle with a radius of 2 is " << (pi * radius) <<;
std::cin.get();
return 0;
}