The answer is C) heater box
Answer:
// here is code in C++.
#include <bits/stdc++.h>
using namespace std;
// recursive function to find sum from 1 to n
int recur_Sum(int n)
{ // base condition
if (n <= 1)
return n;
// recursive call
return n + recur_Sum(n - 1);
}
// main function
int main()
{
// variables
int n;
cout<<"Enter a number:";
// read the number
cin>>n;
// print the sum
cout<<"Sum of first "<<n<<" integer from 1 to "<<n<<" is:"<<recur_Sum(n);
return 0;
}
Explanation:
Read a number from user and assign it to variable "n".Call function recur_Sum() with parameter "n".This function will recursively call itself and find the Sum of first n numbers from 1 to n.Then function will return the sum.
Output:
Enter a number:10
Sum of first 10 integer from 1 to 10 is:55
<span>The fact that Jaden uses decision-making strategy means that he</span><span><span> will make his decision based on long-term goals and a longer term vision.</span> In order to implement a telecommunication technology that would most improve the way members of his team exchange information, Jaden first must determine the goals. </span>
Explanation:
Jesus Christ had dreads so shake em', I ain't got none but I'm planning on growing some
Answer:
try this
Explanation:
if name == '__main__':
words = input().split()
data = input()
for i in range(0, len(words), 2):
if words[i] in data:
data = data.replace(words[i], words[i + 1])
print(data)