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
//CountLT.cpp | |
//Aryelle Young | |
//Sep 23 2014 | |
//Defines the CountLT class | |
#include "CountLT.h" | |
//Default Constructor | |
//takes a value from client code to use as initial bound | |
CountLT::CountLT(double bound) : the_bound(bound), count(0) |
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 <stdio.h> | |
#include <iostream> | |
#include <math.h> | |
using namespace std; | |
int main(void) { | |
FILE * fp5; | |
int Max(11); | |
double V[20000]; | |
double diff(1.0); |
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
/* LOGISTIC EQUATION */ | |
#include <stdio.h> | |
#include <math.h> | |
int main() | |
{ | |
FILE *fp; | |
int i; | |
int k; |
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 <math.h> | |
using namespace std; | |
// declare functions | |
int prime(int n); | |
int main() { | |
int n1; | |
int i; | |
bool isprime; |