Welcome to Westonci.ca, where finding answers to your questions is made simple by our community of experts. Connect with a community of experts ready to provide precise solutions to your questions quickly and accurately. Get quick and reliable solutions to your questions from a community of experienced experts on our platform.

Does anyone know c++? I have c++ to java, if you can please help me convert the following.

#include

#include

#include

int main(int argc, char* argv[]) {



std::cout << " 1st\t 2nd\t Tot.\t Ave.\n+-------------------------------+\n";



double first, _first=0, second, _second=0;

srand(time(NULL));

int amount = (rand() % 10000)+1000;

int _amount = amount;

while(amount>0) {

first = (rand() % 6)+1;

_first+=first;

second = (rand() % 6)+1;

_second+=second;

std::cout << " " << int(first) << "\t " << int(second) << "\t " << int(first+second)

<< "\t " << std::fixed << std::setprecision(2) << (first+second)/2 << std::endl;

amount--;

}

std::cout << "\n\nFirst Average: " << _first/double(_amount) << "\nSecond Average: " << _second/_amount

<< "\nAverage Total: " << (_first+_second)/double(_amount)<< "\nTotal Attempts: " << _amount << std::endl;

return 0;

}