I'm new to C++ and to start off I'm making a multiplication calculator. The problem is whenever I do numbers over ~1000 it just calculates scientific notations. The code is below, can anyone help?
#include <iostream>
using namespace std;
int main()
{
float value;
cout << "Please enter value ";
cin >> value;
float multBy;
cout << "\nWhat would you like to multiply by? ";
cin >> multBy;
float answer = value * multBy;
cout << "\nYour answer is " << answer;
system("pause>0");
}