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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>JS Bin</title> | |
</head> | |
<body> | |
<script src="https://fb.me/react-15.1.0.js"></script> | |
<script src="https://fb.me/react-dom-15.1.0.js"></script> |
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
<html> | |
<head> | |
<title>Shuffle</title> | |
<script> | |
//BUILD DECK | |
var suit = ["Hearts", "Spades", "Clubs", "Diamonds"]; // Create the suit array | |
var face = ["Ace", "1", "2", "3", "4", "5", "6", "7", // Creat face array | |
"8", "9", "10", "Jack", "Queen", "King"]; | |
//GENERATE RANDOM VALUES FOR 5 DIFFERENT CARDS |
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
/*Adam VanSlyke | |
adamvans | |
11/18/2009 | |
PA4 | |
Ellen Cardone | |
A3 | |
I have prepared this assignment on my own and understand the consequences of copying other people's work. | |
*/ | |
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
Programming Project PA4 Fall 2009 | |
Euler's method and the baking-oven problem | |
Your file must include a UBEAS230 box as described in the Guidelines. The name of your .cpp file must include your UBIT name and the assignment abbreviation (PA4) (for example: hstengerPA4.cpp). Upload your file before 5:00pm on the due date using the dropbox found on the front page of the website. | |
Problem statement: | |
The fuselage of the V-22/Osprey is made by Boeing Helicopter in Philadelphia. It is made from several large pieces of carbon fiber composite that must be baked in a pressurized oven. The heat-up time of the oven must be carefully controlled so that curing of the composite occurs evenly. Your assignment is to calculate the heat-up time for various fuselage parts, and to determine if they meet a given criteria. This program will use material covered through Chapter 2 and Section 4.9. | |