Where are the statements then bbs lol
Answer:
Codes for each of the problems are explained below
Explanation:
PROBLEM 1 IN C++:
#include<iostream>
using namespace std;
//fib function that calculate nth integer of the fibonacci sequence.
void fib(int n){
// l and r inital fibonacci values for n=1 and n=2;
int l=1,r=1,c;
//if n==1 or n==2 then print 1.
if(n==1 || n==2){
cout << 1;
return;
}
//for loop runs n-2 times and calculates nth integer of fibonacci sequence.
for(int i=0;i<n-2;i++){
c=l+r;
l=r;
r=c;
cout << "(" << i << "," << c << ") ";
}
//prints nth integer of the fibonacci sequence stored in c.
cout << "\n" << c;
}
int main(){
int n; //declared variable n
cin >> n; //inputs n to find nth integer of the fibonacci sequence.
fib(n);//calls function fib to calculate and print fibonacci number.
}
PROBLEM 2 IN PYTHON:
def fib(n):
print("fib({})".format(n), end=' ')
if n <= 1:
return n
else:
return fib(n - 1) + fib(n - 2)
if __name__ == '__main__':
n = int(input())
result = fib(n)
print()
print(result)
Answer:

Explanation:
solution:
from this below equation (1)
σ/2εo
...........(1)
we obtain:


4.75cm * 5.22cm is 24.795cm²
but let's do this with m² instead:
0.0475m * 0.0522m = 0.0024795
now we can compare it with the 49780 much easier.
devide. that's the <u>roughly</u> 20,000,000fold of the plot, but it's still squared, so let's take the root
so the representative fraction is 1:4,480.
the exact value is in the screens
have a nice day:)
Advantages:
- allowed steel to be produced without fuel
- using the impurities of the iron to create the necessary heat
- reduced the costs of steel production
Disadvantages:
- could convert only a pig iron low in phosphorus and sulfur
- these elements could have been removed by adding a basic flux such as lime, but the basic sl*g produced would have degraded the acidic refractory lining of Bessemer's converter.
au revoir mon amour <3