1/25 because the only number higher than 24 is 25 and you are choosing a number between 1 and 25
Answer: No
Step-by-step explanation:
A variable is always denoted with a symbol (commonly x), and a variable means that it can change based on what you plug into the symbol
Constants must always stay the same, so variables can't be constants and constants can't be variables
Answer:
Using c++
Check the image for colors.
Step-by-step explanation:
#include <iostream>
using namespace std;
int main()
{
float length1,length2,width1,width2,area1,area2;
cout<<"length of Rectangle 1\n";
cin>>length1;
cout<<"\nwidth of Rectangle 1\n";
cin>>width1;
cout<<"\nlenght of Rectangle 2\n";
cin>>length2;
cout<<"\nwidth of Rectangle 2\n";
cin>>width2;
area1=length1*width1;
area2=length2*width2;
if (area1<area2)
{cout << "\nRectangle 2 has greater area";}
else {
if (area1>area2)
{cout << "\nRectangle 1 has greater area";}
else {cout << "\nAreas are the same";}
}
return 0;
}
Answer:
V = 486
, or approx. 1,526.814
Step-by-step explanation:
V =
*r²*(h/3)
plug in the numbers: V =
* (9)² * (18/3)
simplify: V =
* 81 * 6
simplify: V = 486
, or approx. 1,526.814