1) Длину круга(периметр окружности) можно найти по радиусу(вводится с клавиатуры)
#include <iostream>using std::cout;using std::cin;using std::endl;int main(){ int r; const double pi = 3.14159265; cout << "Enter the radius: "; cin >> r; cout << "Circumference = " << (2 * pi * r) << endl; return 0;}
2)
#include <iostream>using std::cout;using std::cin;using std::endl;int main(){ int f, b; cout << "Enter b: "; cin >> b; for(int i = 1; i <= 5; i++) { cout << "f(x) = " << (i * i + b) << endl; } cout << endl; return 0;}
Вторая.
#include <iostream>using std::cout;using std::cin;using std::endl;int main(){ double a[4][4]; int mass[4] = { 0 }; for(int i = 0; i < 4; i++) { for(int j = 0; j < 4; j++) { cin >> a[i][j]; } } cout << endl; for(int i = 0; i < 4; i++) { for(int j = 0; j < 4; j++) { if(a[i][j] < 0.0) { mass[i]++; } } } for(int i = 0; i < 4; i++) { cout << mass[i] << ' '; } cout << endl; return 0;}
1) Длину круга(периметр окружности) можно найти по радиусу(вводится с клавиатуры)
#include <iostream>
using std::cout;
using std::cin;
using std::endl;
int main()
{
int r;
const double pi = 3.14159265;
cout << "Enter the radius: ";
cin >> r;
cout << "Circumference = " << (2 * pi * r) << endl;
return 0;
}
2)
#include <iostream>
using std::cout;
using std::cin;
using std::endl;
int main()
{
int f, b;
cout << "Enter b: ";
cin >> b;
for(int i = 1; i <= 5; i++)
{
cout << "f(x) = " << (i * i + b) << endl;
}
cout << endl;
return 0;
}
Вторая.
#include <iostream>
using std::cout;
using std::cin;
using std::endl;
int main()
{
double a[4][4];
int mass[4] = { 0 };
for(int i = 0; i < 4; i++)
{
for(int j = 0; j < 4; j++)
{
cin >> a[i][j];
}
}
cout << endl;
for(int i = 0; i < 4; i++)
{
for(int j = 0; j < 4; j++)
{
if(a[i][j] < 0.0)
{
mass[i]++;
}
}
}
for(int i = 0; i < 4; i++)
{
cout << mass[i] << ' ';
}
cout << endl;
return 0;
}