1. Laptops are portable
2. Laptops take less space
The answers are full screen and gridlines.
Explanation:
2.there will be 8 books left on the shelf if each child takes one
Answer:
#include <iostream>
#include <cstdlib>
using namespace std;
int main(){
int sum=0, num=5; //variables declaration and inicialization
while (sum<500){ //conditioning to do the sum up to 500
sum=sum+num; //actually sum process
cout << "The value is: "<<sum; //show the result in screen
};
return 0;
}