User profile: alepxpl93

User info
User name:alepxpl93
Email:asj5145@psu.edu
Name:aleks
Location:pennsylvania
Bio:I currently go to Penn state as a first year student, studying computer science.
History
Joined:
Number of posts:24
Latest posts:

Sequence comparing
looping array A 4 times would return it to its original state. original 0 1 2 3 4 5 6 7 1st loop 7 5...

Sequence comparing
It should basically tell me how many times I would have to loop array B to get back to A. Or I guess...

Sequence comparing
This is the small version with preset arrays. [code] #include <iostream> #include <string> #include ...

Sequence comparing
[code]//Monge's Shuffle #include <iostream> #include <iomanip> #include <cmath> using namespace std...

Sequence comparing
So I changed it to [code] int A[8] = {0,1,2,3,4,5,6,7} int B[8] = {7,5,3,1,0,2,4,6} int same = 0;...