Ответы
Ответ дал:
0
//MV C++ 10
#include <iostream>
#include <cmath>
using namespace std;
int main(){
for (float x=0; x<=5; x+=0.5)
cout<<"x = "<<x<<"; y = "<<sqrt(x)+pow(cos(x), 2)+1<<endl;
return 0;
}
#include <iostream>
#include <cmath>
using namespace std;
int main(){
for (float x=0; x<=5; x+=0.5)
cout<<"x = "<<x<<"; y = "<<sqrt(x)+pow(cos(x), 2)+1<<endl;
return 0;
}
Вас заинтересует
2 года назад
2 года назад
7 лет назад
7 лет назад
9 лет назад
9 лет назад
10 лет назад