Answer:
avoiding cutting down tree carelessy
Explanation:
people cutting down tree due to high population in order to find land for building this house so government should encourage people to have less children in the families and train them that when they are cutting trees should plants 10 tree inorder to recovery tree that is take off.
Answer:
200
Explanation:
A size sheets (also known as letter size) are 8.5 inches by 11 inches.
B size sheets (also known as ledger size) are 11 inches by 17 inches.
One B size sheet is twice as large as a A size sheet. So if you have 100 B size sheets and cut each one in half, you'll get 200 A size sheets.
Answer:
Distributes a floor load or weight
Explanation:
Answer:
See explaination
Explanation:
#include <iostream>
#include<string.h>
using namespace std;
bool isPalindrome(string str, int lower, int upper){
if(str.length() == 0 || lower>=upper){
return true;
}
else{
if(str.at(lower) == str.at(upper)){
return isPalindrome(str,lower+1,upper-1);
}
else{
return false;
}
}
}
int main(){
string input;
cout<<"Enter string: ";
cin>>input;
if(isPalindrome(input,0,input.length()-1)){
cout<<input<<" is a palindrome"<<endl;
}
else{
cout<<input<<" is NOT a palindrome"<<endl;
}
return 0;
}