Answer:
Step-by-step explanation:
15a-14
5 odd numbers and 5 even numbers
since they can be repeated
5*5*5=first 3 digits
5*5*5=last 3 digits
in all
5*5*5*5*5*5=15625 ways
Answer:
headband 17.88
Wristband 9.31
Step-by-step explanation:
headband: 822.48/(43+3)
Wristband: 400.33/43
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;
}
If the equation is 4x+1/3=20, your answer would be x=59/12.
- You would subtract 1/3 from each side. (1/3 - 1/3) (20-1/3)
- Then your new equation would be 4x = 59/3
- You would divide 4 from each side (4/4) (59/3 / 4)
- x = 59/12