Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Browse All

Alphabetical listing with fast deep pagination.
1197283 items • Page 36 / 23946

All 0-9 A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
#include #include using namespace std; int main () { int score; cout
#include #include using namespace std; int main () { int score; cout<<"Function score"<<endl; cout<<"Enter score"<<endl; cin>>score; cout<<"sco…
#include #include using namespace std; int main( void ) { float celsius; // cont
#include #include using namespace std; int main( void ) { float celsius; // contains value for degrees in Celsius float fahrenheit; // contains value for degrees in Fahrenheit // …
#include #include using namespace std; int main() { //constants declaration cons
#include #include using namespace std; int main() { //constants declaration const int DAYS_PER_MONTH = 30; const int ONE_DOG_YEAR = 7; const int ONE_GOLD_FISH_YEAR = 5; const int …
#include #include using namespace std; int main() { int a, b; int oldest = -99;
#include #include using namespace std; int main() { int a, b; int oldest = -99; //dummy value cout << "Enter your age and a friends age. " << endl; cin >> a >…
#include #include using namespace std; int main() { int n , j ,y; double _sum=0
#include #include using namespace std; int main() { int n , j ,y; double _sum=0 , variance; cout << " How many numbers to type? " << endl; cin >> y; double max[y…
#include #include using namespace std; int menu() { int operation; cout > operat
#include #include using namespace std; int menu() { int operation; cout > operation; return operation; } void add(int a, int b, int c, int d, int numerator, int denominator) { …
#include #include using namespace std; struct menuitem { int idnum; char name[20
#include #include using namespace std; struct menuitem { int idnum; char name[20]; float price; int qty; }; void displaymenu(menuitem); void printcheck(menuitem); menuitem things[…
#include #include using namespace std; struct sortedListNode char letter int occ
#include #include using namespace std; struct sortedListNode char letter int occurrences sortedListNode *next; sortedListNode* fromString(string word) sortedListNode *head NULL; f…
#include #include void ReverseArray(char* apples); int main() { int i; char tire
#include #include void ReverseArray(char* apples); int main() { int i; char tires[80]; strcpy(tires,"Whitewalls are best"); printf ("Tires is located at %p ",tires); for (i=0; i&l…
#include #include#include# define SIZE 4 void generate_answer(int[]); void compa
#include #include#include# define SIZE 4 void generate_answer(int[]); void compare(int[],int[],int *,int *); int main() {int guess[SIZE],answer[SIZE]; int i,n,m,guesses; int numbe…
#include /* You may NOT call any other string functions. * Do NOT include string
#include /* You may NOT call any other string functions. * Do NOT include string.h. * Do NOT alter main in any way. */ int hasSubstring(char w[], char sub[]); int main () { char w…
#include // Copies the C string pointed by source into the array pointed by dest
#include // Copies the C string pointed by source into the array pointed by destination, // including the terminating character (and stopping at that point). // To avoid overflows…
#include // input output stream header file #include // standard input output he
#include // input output stream header file #include // standard input output header file #include // standard library header file #include // header file with string function #in…
#include //#include #include #include #include using namespace std; int number_o
#include //#include #include #include #include using namespace std; int number_of_crs = 0; void input(char**, float**, char*); void output(char**, float** , char* , float, char*);…
#include //Write a binary and linear search for the following program to work in
#include //Write a binary and linear search for the following program to work in visual studio. #include#include #includeusing namespace std; int main() { int option; int currentL…
#include //_________________ #include //_________________ int ispowerOfTwo (unsi
#include //_________________ #include //_________________ int ispowerOfTwo (unsigned int n);//_________________ int main() {unsigned int x = 32; if (ispowerOfTwo (x))//___________…
#include //function prototypes bool isDelimiter(char ch); bool IsIdentifier(char
#include //function prototypes bool isDelimiter(char ch); bool IsIdentifier(char* str); bool isFloat(char* str); bool isInteger(char* str); void lex(char *fileName); //start of ma…
#include #include #include #include
#include <Elevator.h> #include <People.h> #include <iostream> #include <string> #include <array> #include <vector> #include <math.h> #inc…
#include void main(void) { unsigned char mynum[]= \"012345ABCD\"; un
#include <P18F458.h>    void main(void) { unsigned char mynum[]= "012345ABCD"; unsigned char z; TRISB = 0; for(z=0;z<10;z++) PORTB = mynum[z]; while(1); } (5%) In the ori…
#include #include \"resource2.h\" //2.3 #include //using
#include <afxwin.h> #include"resource2.h"//2.3 #include<afxtempl.h> //using namespace std; CArray<CPoint,CPoint> array1; //CArray<CPoint, CPoint> array1; /…
#include #include #include #include
#include <algorithm> #include <iostream> #include <string> #include <unordered_map> #include <vector> using namespace std; // You will need to compil…
#include #include #include #include using n
#include <array> #include <memory> #include <chrono> #include <iostream> using namespace std; class SuperBigObject { public:    array<uint64_t, 10000&gt…
#include #include using namespace std; class Pixel { public: Pi
#include <array> #include <random> using namespace std; class Pixel { public:    Pixel()    {        random_device device;        mt19937 engine(device());        unif…
#include // Assign the value of 5 to the integer variable pointed //
#include <assert.h> // Assign the value of 5 to the integer variable pointed // to by ptr. // // This should only take one line of code! void set_to_five(int *ptr) { // TODO…
#include using namespace std; vector split_string(string
#include <bits/stdc++.h> using namespace std; vector<string> split_string(string); // Complete the introTutorial function below. int introTutorial(int V, vector<int…
#include using namespace std; vector split_string(string
#include <bits/stdc++.h> using namespace std; vector<string> split_string(string); // Complete the quickSort function below. vector<int> quickSort(vector<int&…
#include void draw_border( void ) { // (a) Declare an intege
#include <cab202_graphics.h> void draw_border( void ) { // (a) Declare an integer variable called left, with an initial value of 1. // (b) Declare an integer variable called…
#include #include using namespace std; //REQUIRES: v is not e
#include <cassert> #include <vector> using namespace std; //REQUIRES: v is not empty //EFFECTS: returns a summary of the dataset as (value, frequency) pairs. //In the …
#include #include #include #include #incl
#include <cctype> #include <fstream> #include <iostream> #include <string> #include <vector> /// Add more header files if necessary class counter { p…
#include #include #include #include #incl
#include <cctype> #include <fstream> #include <iostream> #include <string> #include <vector> /// Add more header files if necessary class counter { p…
#include #include using namespace std; bool isvowel (char); i
#include <cctype> #include<iostream> using namespace std; bool isvowel (char); int main () { int n,i=0,count=0; bool result; char c; cout << " Enter a number of …
#include #include #include using namespace std; //
#include <cmath> #include <cstdlib> #include <iostream> using namespace std; // FUNCTION PROTOTYPE FOR read_us_length void read_us_length(int &,int &,int…
#include #include using namespace std; int main(int argc, cha
#include <cmath> #include <iostream> using namespace std; int main(int argc, char* argv[]) { int n = 1234; int d1 = n % 10; n = n / 10; int d2 = n % 10; n = n / 10; in…
#include #include #include #include #in
#include <conio.h> #include <iomanip> #include <iostream> #include<stdlib.h> #include <time.h> #include<sstream> #include <string> using …
#include #include #include #include usin
#include <conio.h> #include <iostream> #include <string> #include <cstdlib> using namespace std; //Header for class Employee class Employee { public: Emplo…
#include #include #include #include #inc
#include <cstdio> #include <cstdlib> #include <cstring> #include <iostream> #include <fstream> #include <iostream> #include <iomanip> #in…
#include #include #include using namespace std; /*
#include <cstdlib> #include <iostream> #include <cmath> using namespace std; /*             This program reads a width and height of a rectangle. It computes and…
#include #include #include #include usin
#include <cstdlib> #include <iostream> #include <fstream> #include <string> using namespace std; int main(int argc, char *argv[]) { void ReadMatrix(float […
#include #include #include using namespace std; c
#include <cstdlib> #include <iostream> #include <fstream> using namespace std; class PointType { private: int xc; int yc; public: void setpoint(int x, int y); in…
#include #include #include #include /
#include <cstdlib> #include <iostream> #include <iomanip> #include <product.h> // #include <product.cpp> // in lieu of makefile const size_t arraySiz…
#include #include #include using namespace std; v
#include <cstdlib> #include <iostream> #include <iomanip> using namespace std; void initialize (int a [4][5]); void print (int my_arr [4][5]); void zero_all (int…
#include #include #include #include #incl
#include <cstdlib> #include <iostream> #include <math.h> #include <vector> #include <utility> #include <fstream> using namespace std; typedef u…
#include #include #include #include #defin
#include <cstdlib> #include <iostream> #include <vector> #include <ctime> #define RAND_MAX = 40000; using namespace std; //functions vector<int> inse…
#include #include using namespace std; const string face[]
#include <cstdlib> #include <iostream> using namespace std; const string face[] = { "Ace", "2", "3", "4", "5", "6", "7",   "8", "9", "10", "Jack", "Queen", "King" }; c…
#include #include using namespace std; int main(int argc, c
#include <cstdlib> #include <iostream> using namespace std; int main(int argc, char *argv[]) { char letter; int count = 0; char response; do { cout << "Enter the…
#include using namespace std; void catFun(char [], char [], char []);
#include <cstring> using namespace std; void catFun(char [], char [], char []); //learned inclass Monday int cmp(char [], char [], char []); // functionprototype int main() …
#include #include #include \"Point.h\" template T
#include <exception> #include <string> #include "Point.h" template <class T> T operator*(const Point<T>& p1, const Point<T>& p2) { return p1.…
#include #include #include #include
#include <fcntl.h> #include <unistd.h> #include <stdio.h> #include <sys/types.h> #include <sys/stat.h> #include <string.h> #include <stdlib.…
#include #include #include #include
#include <fcntl.h> #include <unistd.h> #include <stdio.h> #include <sys/types.h> #include <sys/stat.h> #include <string.h> #include <stdlib.…
#include #include #include #include
#include <fcntl.h> #include <unistd.h> #include <stdio.h> #include <sys/types.h> #include <sys/stat.h> #include <string.h> #include <stdlib.…