Answer:
ok
Explanation:
username: none of your buissness
password: stop lying
do you think we're dumb enough to fall for your trick
Answer: Here are a few...
1) The monstrous elephant trampled through the jungle crushing everything in its path.
2) Because it was so monstrous, the maid often got lost in the massive home she cleaned.
3) Monstrous amounts of foods are needed to feed the hundreds of refugees who showed up at the soup kitchen.
Explanation:
I hope this helps :D
Just- you don’t wanna know alr? Alr :)
Here are few commands for Mac:
Command+C ⇔ <span><span>Copies selected items
</span>Command+D </span>⇔ <span>Duplicates the selected item(s)
Command+E </span>⇔ <span>Ejects the selected volume
Command+F </span>⇔ <span>Displays the Find dialog
Command+H </span>⇔ <span>Hides All Finder windows
Command+I </span>⇔ <span>Shows info for selected item or items
Command+J </span>⇔ <span>Shows the view options for the active window
Command+K </span>⇔ Displays the Connect to Server dialog
Answer:
create the integer variable and initialize it to one, with the do statement, increment the variable by one and print it, then the while statement checks if the variable is less than or equal to 10.
#include <iostream>
using namespace std;
int main(){
int i = 1;
do {
cout<< i << "\n";
i++;
}
while (i <= 10);
}
Explanation:
The C++ source code initializes the integer variable i to one and increments and print the value if the value is less than or equal to ten. The do-while statement executes a block of code before the condition is implemented.