Язык С++
 
почему выдает ошибку в 
c =  sqrt (f);
(подчеркивает sqrt или =)
программа:
// Гипотенуза.cpp: определяет точку входа для консольного приложения.//
#include "stdafx.h"
#include <iostream>
using namespace std;
int main( )
{
int a;
 int b;
 double c;
 int d;
 int e;
 int f;
cin>> a;
 cin>> b;
 d = a^2;
 e = b^2;
 f = d+e;
 c =  sqrt (f);
 cout<< c;
system ("pause");

return 0;
}
подскажите, как исправить на уровне 1-го года обучения программированию.
Фото ошибки ниже.
Please enter comments
Please enter your name.
Please enter the correct email address.
You must agree before submitting.

Answers & Comments


Copyright © 2024 SCHOLAR.TIPS - All rights reserved.