a companys Market share is the percentage of the total target market for the product that belongs to the company
Answer:
public class CheckPalindrome{
public static boolean IsPalindrome(String str){
if(str.Length<1)
{
return true;
}
else
{
if(str[0]!=str[str.length-1])
return false;
else
return IsPalindrome(str.substring(1,str.Length-2));
}
}
public static void main(string args[])
{
//console.write("checking palindromes");
string input;
boolean flag;
input=Console.ReadLine();
flag= IsPalindrome(input);
if(flag)
{
Console.WriteLine("Received"+input+"is indeed palindrome");
}
else
{
Console.WriteLine("received"+input+"is not a palindrome");
}
}
Explanation:
Answer:
any device
Explanation:
I would say that because you can code on any device if thats what you mean. There are websites for coding and they are below
The best websites to learn coding
- Codecademy.
- Udemy.
- Pluralsight (Code School)
- Team Treehouse.
- freeCodeCamp.
- edX.
- Udacity.
credit to mikkegoes . com
Answer:
#include <iostream>
using namespace std;
int main()
{
float dollars[5] = {1986.10, 240.99, 215.50, 75.00, 65.97};
float euros[5];
for(int i=0;i<5;i++){
euros[i] = dollars[i]*0.92;
}
for(int i=0;i<5;i++){
cout<<euros[i]<<endl;
}
return 0;
}
Explanation:
First include the library iostream for input/output.
then, create the main function and declare the arrays.
after that, take a for loop for traversing through dollars array and convert into euros by multiply each element with 0.92 value and store in the euros array with same index value as dollars array.
finally, take the for loop for print each element of the euros array.