Answer:
x=3
Step-by-step explanation:
Answer:
The answer is "y < 2x - 4".
Step-by-step explanation:
Write in <u>slope-intercept</u> form, the formula is "y = mx + b"
Answer:
3x-x+2=4
Step-by-step explanation:
Answer:
WHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAT
Step-by-step explanation:
Answer:
Step-by-step explanation:
programs can be written in multiply languages. for this solution I'll be writing in C++.
#include<iostream> // this is called the preprocessor definition
using namespace std;
int main() //the main function
{
int num, product; //declaration of the variables
cout << "enter the whole number";
cin >> num;
product = num * 12;
cout << product; // displaying the final results
return 0;
}