simple BTC Generator Test Programm ;)

in #programming6 years ago (edited)

mycelium.png

i created a simple console programm for complete newbies to be able to get into a bit better understanding how the Programmers mindset works.

just download a suited IDE (Integrated Development Environment) the code shown was developed using http://www.monodevelop.com/ but there are a lot of IDE's out there. just download and install the one that suites you best ;)

the programm is also giving you your first 10 BTC for free. they may not be able to spent into the main net directly but i connected them there and they are part of my mainnet coins. i wanna also give others a bit better help for get into knowledge what bitcoin really is. for me its about creation of new things mainly. and the software its based on is monetizing you for automatically taxing and banking for this.
very convenient. getting into creativity without the need to do anything directly. just by letting it flow :)
but isn't that what creativity is all about???

;)

have fun:

P.S: the programme also cointains some interactivity extension that will be useful for further developement but are not running actively in this version. this gives you a bit of motivation to get use for this functionality
furthermore the picture shown is related to the mycelium bitcoin app that can be found here:

https://play.google.com/store/apps/details?id=com.mycelium.wallet ;)

//created by Cr4shOv3rrid3 under the https://github.com/Cr4shOv3rrid3/1337_General_Public_BTC_Banking_license
// feel free to copy, hack, destroy or create new things with it
// P.S. if you don't like i created that for you. just replace first line with your own cool stylish hacker name ;)

#include iostream <-- note to add < and > before and after iostream as steemit is not letting me post the code with this html tags.
#include stdio.h <-- note to add < and > before and after iostream as steemit is not letting me post the code with this html tags.

using namespace std;

int main()
{
cout << "Bitcoin Generator Test Programm: \n";

struct test {
int quantity;
float price;
double extended;
};
struct test2 {
int quantity2;
float price2;
double extended;
};
struct test3 {
int quantity3;
float price3;
double extended;
};

test var1;
test2 var2;
test3 var3;

var1.price = 5.5;
var2.price2 = 2.6;
var3.price3 = 1.9; //10 BTC in sum and cost price of roundabout a local banking license: (100k$)

string unit = "BTC";

cout << var1.price << " "<< unit << "\n" << var2.price2 << " " << unit << "\n" << var3.price3 << " " << unit << "\n";

int count = 10;
char ch;
while(cin.get(ch) != ".")
count++;
cout << "Numbers of characters read: \n" << count;
cout << "Test print!!!";

    return 0;

} //Basic Beginners Bitcoin generator Test Programmm in 50 Lines of code