Answer:I would try downloading a beat app and making a song,then posting
Explanation:
Answer:
9x+y Lol use photo math :) !!
Answer:
No, a monitor only shows what a different device tells them too however, a tv can be connected to nothing and show tv shows
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;
}