#include #include #include using namespace std; bool isPerfectSquare(long n){ return false; } int myFirstFunction(){ return 1; } bool isPrime(int n){ return false; } int main() { //Assignment 1 cout << "Your first assigment is to write a for loop and while loop that prints out 'i'" << endl; //Assignment 2 /* 1) iniatilize all 100 elements in the array num to aray to random values 2) calculate the sum and mean of the array int num[100]; //an int array that can hold 100 values! num[0] = rand() % 100; */ //ASSIGNMENT 3 /* cout<< "make isPrime(int n) work properly "<< isPrime(5) << endl; cout << "the square root of 25 is "<< sqrt(5)<