<span>When an online company runs a special promotion on swimsuits during the summer, they are taking advantage of the concept of p</span>eople’s urge to go for swimming to beat the summer heat and keep themselves cool. As a result, they are very likely to buy more swimsuits to go swimming.
With a special promotion on swimsuits, people are likely to buy the company’s merchandise. This is because they can get what they want by paying a lesser amount than usual. In turn, the company is able to benefit by making more sales than its online and retail competitors.
The answer is B I did the test
Here's a solution that works except for the leading zeros. Unclear (to me) why they need to be there and what's the logic?
public static void main(String[] args)
{
int number, base;
Scanner Cin = new Scanner(System.in);
System.out.print("Enter a decimal number between 1 and 100,000: ");
number = Cin.nextInt();
System.out.print("Enter a base from 2-16: ");
base = Cin.nextInt();
System.out.format("The number %d in base %d is %s.", number, base, Integer.toString(number, base).toUpperCase());
}