Обчислити значення функції y=2*x2 + 10*x+40. Змінна х вводиться з консолі. Microsoft visual Studio
#include using namespace std; int main(){ int x; cin >> x; int y = 2 * x * x + 10 * x + 40; cout << y;<br> return 0; }