Answer:
last one check it and the second one
Explanation:
Make sure both devices are enabled or are able to connect via Bluetooth. Set the tablet to "discover" mode. Or, you can have it scan for nearby Bluetooth devices. Select the device. Sometimes, you are prompted for a password or code. If you don't have the manual (which usually states it) you can use either 0000 or 1234.
The correct answer is 1: B new tech and 2:C we can tell by the way businesses are incorporating things like social media like how Wendys got more popular because of their sassy tweets
Answer and Explanation:
//buchi
Var firstNumber=prompt("please enter first number");
Var secondNumber=prompt("please enter second number");
Var thirdNumber=prompt("please enter third number");
Var numberTotal=firstNumber+secondNumber+thirdNumber;
Function calculateNumbers(){
return numberTotal;
return int(numberTotal/3);
return firstNumber*secondNumber*thirdNumber;}
Console.log(calculateNumbers());
Answer:
#include <iostream>
#include <map>
using namespace std;
int main()
{
map<int, int> numbers;
cout << "Enter numbers, 0 to finish" << endl;
int number;
while (true) {
cin >> number;
if (number == 0) break;
numbers[number]++;
}
for (pair<int, int> element : numbers) {
std::cout << element.first << ": occurs " << element.second << " times" << std::endl;
}
}
Explanation:
One trick used here is not to keep track of the numbers themselves (since that is not a requirement), but start counting their occurrances right away. An STL map< > is a more suitable construct than a vector< >.