Write a java program , if one acre of land is equivalent to 43,560 square feet. Write a java program that calculate zhe number of acres in a track of land with 389,767 square feets.
Answers
Answered by
0
Answer:
"This is the java program, I tried it myself and it seems to be correct. However, you can keep changing the variables and keep a track of the program: #include <iostream>
using namespace std;
int main()
{
//Variables
float tractLand = 389767;
float oneAcre = 43560;
float tractLandAcred = tractLand / oneAcre;
cout << tractLand << "" square feet is equal to "" << tractLandAcred << "" acres."" << endl;
}"
Explanation:
Similar questions