Skip to content

Instantly share code, notes, and snippets.

-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
-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
#include <iostream>
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
int count;
float total, inBox;
// user defined function below
float f(float x)
#include <iostream>
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
int count;
float total, inBox;
// user defined function below
float f(float x)
@sergei-zelinsky
sergei-zelinsky / base64.js
Created March 21, 2017 20:41 — forked from stubbetje/base64.js
Base64 encode and decode in javascript
var Base64 = {
characters: "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=" ,
encode: function( string )
{
var characters = Base64.characters;
var result = '';
var i = 0;
do {