This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <string> | |
using namespace std; | |
class Gradebook { | |
public: | |
explicit Gradebook(string name) | |
: courseName(name) | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
using namespace std; | |
//a) Write the function header for function zero that takes a long integer built - in array | |
//parameter bigIntegers and does not return a value. | |
void zero(long bigIntegers[]); | |
//c) Write the function header for function add1AndSum that takes an integer built - in array | |
//parameter oneTooSmall and returns an integer. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
using namespace std; | |
int recursiveMinimum(int arr[], int); | |
int main() { | |
const int size = 5; | |
int array[size]; | |
cout << "Enter 5 random values: \n"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <string> | |
#include <cstdlib> | |
#include <ctime> | |
using namespace std; | |
int main() { | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<iostream> | |
using namespace std; | |
int main() { | |
cout << "***************************************************************************************** \n" | |
<< "7.10" << endl; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<iostream> | |
#include<string> | |
#include <cstdlib> | |
#include <ctime> | |
using namespace std; | |
int main() { | |
cout << "Welcome to Skippy the Cat's Adventure \n" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <string> | |
using namespace std; | |
int main() { | |
/*5.12 Write an application that calculates the product of the odd integers from | |
1 to 15*/ | |
for (int i = 1, j = 3; i <= 13, j <= 15; i += 2, j += 2) { |
NewerOlder