Answer:
yeah I can help u but how will I get ur email and password?
The program illustrates the concepts of loops and conditional statements.
<h3>The complete program</h3>
The program written in Python, where comments are used to explain each line is as follows:
start = int(input())
end = int(input())
for i in range(start, end+1):
if i%3 == 0 and i % 6 !=0:
print(i,end = " ")
Read more about python programs at:
brainly.com/question/13246781
#SPJ1
Answer:
No they are not likely to crash
Explanation:
The video game industry is more advanced than it was back in the 1980s. There have been a great level of improvements in technology in this industry such as things like virtual reality advancements,greater hardware capabilities and alot more capital investments and big players in the industry. This has allowed the industry to grow and become stronger with so much potential, amassing a larger amount of consumers. The crash in the 1980s was a result of limited options in gaming as a result of limited technologies whereby individuals began to switch to personal computers for gaming. This is unlikely to happen now seeing that there have been greater improvements in the industry in terms of gaming technologies and increased variety and options in gaming consoles
Answer:
When the Basic Input/Output System (BIOS) attempt to find an operating system on a hard disk to starts from.
Explanation:
As a computer starts up, and the BIOS cannot find an operating system on the hard disk to start from, an error message would be displayed.
Answer:
int main() {
Circle* pCircle = new Circle(5.0f, 2, 3);
pCircle->up();
pCircle->down();
pCircle->left();
pCircle->right();
cout << "X: " << pCircle->getx() << endl;
cout << "Y: " << pCircle->gety() << endl;
cout << "Radius: " << pCircle->getRadius() << endl;
pCircle->print();
pCircle->update_radius(4.0f);
if (pCircle->isUnit()) {
cout << "is unit" << endl;
}
pCircle->move_x(10);
pCircle->move_y(10);
}
Explanation:
something like that?