Помогите составить две программы в Microsoft visual C++
Программирование арифметических операций
1)Вещественный- длина круга
2)Целочисленный- f(x)=x^2+b, при x=1,2,3,4,5
1) Длину круга(периметр окружности) можно найти по радиусу(вводится с клавиатуры)
#include using std::cout; using std::cin; using std::endl; int main() { int r; const double pi = 3.14159265; cout << "Enter the radius: ";<br> cin >> r; cout << "Circumference = " << (2 * pi * r) << endl;<br> return 0; }
2)
#include using std::cout; using std::cin; using std::endl; int main() { int f, b; cout << "Enter b: ";<br> cin >> b; for(int i = 1; i <= 5; i++)<br> { cout << "f(x) = " << (i * i + b) << endl;<br> } cout << endl;<br> return 0; }