Ive looked at it look at this and tell the difference
#include "stdafx.h"
#include <iostream>
#include <string>
using namespace std;
int main()
{
cout << "Please tell me how many male and female pets you have that aren't neutered. First the males, then the females\n";
int malen;
int femalen;
cin >> malen >> femalen;
int kidn = (malen*femalen*6);
cout << "When all your current pets are done reproducing, you will have " << kidn << " pets\n";
cout << "When you wish to end the program, hit any key and enter. Why? 'Cause I fail at C++ right now =(";
cin >> malen;
return 0;
}
Copyright © 2025 BYOND Software.
All rights reserved.
George Gough