Console Based Calculation For Super Human Mind Training? [closed] - artificial-intelligence

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
Thanks for giving me your valuable time, I wanna create a Brain Calculation Package. Basically, I will generate random numbers and throw it to user and user will enter the result. This will test his accuracy and will make him more sharp.
But, I am pretty confused to use what sort of programming language. My aim is to make the user to calculate digits till 100 digits with time. Please throw some light on this.
What sort of algorithms and strategies can i use?
Are there any other programs available currently to achieve this?

I have no idea what you're trying to do. But if I were drunk and wanted to spit out random numbers, I'd probably use Python.

Related

Need to write a program that takes an assembly-language program and produces the corresponding machine language [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I am very new to programming and I need to write a program that takes an assembly-language program and produces the corresponding machine language.
I need to write the program in C
Does anyone know any good tutorials I can find to create this program?
What you would want to do is finding a datasheet which describes the different op codes for the assembly instructions you're writing. Try ISA "your processor name" - this might come up with something useful.
It probably will be hard and you will run into a lot of problems, but you'll probably learn something from it.

Calculate tide table [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I develop software that shows the tide table for a given area and day.
I need to know the "formula" to calculate the tide table of an area for a given day.
My intention is to develop the application in PHP, but I really do not care programming language, because once you know how to calculate the tide table, and what can I implement in any language.
Thanks for the help.
Greetings!.
Took me like 5min of searching:
http://tides.mobilegeographics.com/locations/854.html
tidal information (#the end of the table)
http://ocean.peterbrueggeman.com/tidepredict.html
http://www.weathercharts.org/
Maybe it helps you out.
NOTE: You don't have to get an API. You can just steal any data from a HTML source with DOM. I am doing this with some EU databases too... Maybe not too legal, but who cares...

Md5 implementation in C language for POS [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
Can any one tell me how to implement MD5 algorithm in a C program.I want a c Program which captures the given Password and converts its equivalent message digest and save. Actually i need this functionality for a POS Application development.
Here is a public domain implementation of MD5 in C: link.
You should avoid saving the message digest straight away.
For common passwords, you'll likely to find databases to directly map back to the password - just search for 5ebe2294ecd0e0f08eab7690d2a6ee69 with Google or your favorite search engine as an example.
Include a salt to protect against that.

How to start programming? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I read a lot of books about C/C++ in Linux and write simple programs. Now I want to try myself with some project. What you can recommend to? (Sorry for my bad English)
If you don't know what to do and just want to get a little experience, try implementing the towers of Hanoi, it's a classical programming exercise (the Wikipedia article might seem frightening at first sight, but the actual algorithm is dead-simple and you'll find lots of material about it online, even a lot of sample implementations). First, start with a text-only solution that just prints numbers. Then, try to "draw" the towers using ASCII art. You can also do this with a GUI, but as a novice it's easiest to start with text-based version.

Beginner C programs [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 12 years ago.
Does anyone know of a list of C programs that can be practised by beginners?
Hi you can use something from here http://www.simonhuggins.com/courses/cbasics/index.htm
but i can recomend you this book http://www.computersciencelab.com/Deitel.htm there are lot of samples
Sphere Online Judge has a ton of problems at many difficulty levels. The neat thing is you can submit them after you're done to have the server run the program and tell you if you got the right results or not.
http://www.spoj.pl/problems/classical/
Explanation of the different categories of problems:
http://www.spoj.pl/tutorials/USERS/#choose

Resources