Mail.ruПочтаМой МирОдноклассникиВКонтактеИгрыЗнакомстваНовостиКалендарьОблакоЗаметкиВсе проекты

Программа на c++

Иван Турмас Ученик (50), на голосовании 2 недели назад
5 и 7 на c++
Голосование за лучший ответ
Батаев Дмитрий Просветленный (22904) 1 месяц назад
 #include <windows.h> 
#include <string>
#include <iostream>
#include <iomanip>
#include <cmath>
#include <vector>

using namespace std;

class Func57
{
public:
vector <double> zz;
double x, a, e;
double d, y, y0, y1, z;
Func57( double xx, double aa, double dd= 0.5, double yy= -1.0, double yy0= 3.0 )
{ x= xx; a=aa; d= dd; y= yy; y1= yy; y0= yy0; e= 2.71828; }
void Work()
{
while (y<=y0)
{
if (y<=0.0) { z= abs(pow(e,a*x) - y); }
else { z= pow(4.0, a*y) - sin(pow(2.0,(a+y))); }
zz.push_back(z);
y+=d;
}
}
void Print()
{
int c; y= y1;
cout << setw(10) << "Y" << setw(20) << "Z" << endl;
cout << setw(40) << setfill('=') << "=" << endl;
cout << setfill(' ');
for(c=0; c<zz.size(); c++ )
{
cout << setw(10) << y << setw(20) << zz[c] << endl;
y+=d;
}
}
~Func57() {}
protected:
private:
};


int main(int argc, char **argv)
{
system("chcp 1251 > nul"); // Руссификация сообщений
setlocale(LC_ALL, "Russian");

Func57 f(1.5, 0.2 ); f.Work(); f.Print();

cout << endl << "Хелло Ворлд" << endl;
system("pause"); // system("pause > nul");
return 0;
}


ПЯТОЕ
Батаев ДмитрийПросветленный (22904) 1 месяц назад
#include <windows.h>
#include <string>
#include <iostream>
#include <iomanip>
#include <cmath>
#include <vector>

using namespace std;

class Func75
{
public:
vector <double> zz;
double b, a, e;
double d, x, x0, x1, f;
Func75( double aa, double bb, double dd= 0.4, double xx= 2.0, double xx0= 5.0 )
{ b= bb; a=aa; d= dd; x= xx; x1= xx; x0= xx0; e= 2.71828; }
void Work()
{
while (x<=x0)
{
if (x>=3.0) { f= abs(pow(e,a+b) - sin(a*x)); }
else { f= abs(cos(pow(a+pow(b,3.0),2.0))) - pow(x,3.0); }
zz.push_back(f);
x+=d;
}
}
Батаев ДмитрийПросветленный (22904) 1 месяц назад
void Print()
{
int c; x= x1;
cout << setw(10) << "X" << setw(20) << "F" << endl;
cout << setw(40) << setfill('=') << "=" << endl;
cout << setfill(' ');
for(c=0; c<zz.size(); c++ )
{
cout << setw(10) << x << setw(20) << zz[c] << endl;
x+=d;
}
}
~Func75() {}
protected:
private:
};


int main(int argc, char **argv)
{
system("chcp 1251 > nul"); // Руссификация сообщений
setlocale(LC_ALL, "Russian");

Func75 f(-2.0, 5.0 ); f.Work (); f.Print();

cout << endl << "Хелло Ворлд" << endl;
system("pause"); // system("pause > nul");
return 0;
}
Батаев ДмитрийПросветленный (22904) 1 месяц назад
седьмое... проверяй сам
Похожие вопросы