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
| -11323 -11225.294444444444 | |
| -11225.294444444444 -11127.588888888888 | |
| -11127.588888888888 -11029.883333333331 | |
| -11029.883333333331 -10932.177777777775 | |
| -10932.177777777775 -10834.472222222219 | |
| -10834.472222222219 -10736.766666666663 | |
| -10736.766666666663 -10639.061111111107 | |
| -10639.061111111107 -10541.35555555555 | |
| -10541.35555555555 -10443.649999999994 | |
| -10443.649999999994 -10345.944444444438 |
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
| -11323 -10345.944444444445 | |
| -10345.944444444445 -9368.88888888889 | |
| -9368.88888888889 -8391.833333333336 | |
| -8391.833333333336 -7414.77777777778 | |
| -7414.77777777778 -6437.722222222224 | |
| -6437.722222222224 -5460.666666666669 | |
| -5460.666666666669 -4483.611111111113 | |
| -4483.611111111113 -3506.5555555555575 | |
| -3506.5555555555575 -2529.500000000002 | |
| -2529.500000000002 -1552.4444444444462 |
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 <stdio.h> | |
| #include <stdlib.h> | |
| #include <math.h> | |
| int count; | |
| float total, inBox; | |
| // user defined function below | |
| float f(float x) |
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 <stdio.h> | |
| #include <stdlib.h> | |
| #include <math.h> | |
| int count; | |
| float total, inBox; | |
| // user defined function below | |
| float f(float x) |
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
| var Base64 = { | |
| characters: "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=" , | |
| encode: function( string ) | |
| { | |
| var characters = Base64.characters; | |
| var result = ''; | |
| var i = 0; | |
| do { |