Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
9answers
5k views

Smart design of a math parser?

What is the smartest way to design a math parser? what i mean is a function that takes a math string (like: "2 + 3 / 2 + (2 * 5)") and returns the calculated value? I did write one in VB6 ages ago but ...
9
votes
9answers
6k views

Is there a calculator with LaTeX-syntax?

When I write math in LaTeX I often need to perform simple arithmetic on numbers in my LaTeX source, like 515.1544 + 454 = ???. I usually copy-paste the LaTeX code into Google to get the result, but I ...
8
votes
2answers
357 views

How did this programmer achieve this calculator inside of a game?

Link here: YouTube Video I'm curious and thinking for a long time now I have no idea how this man pulled it off. I just see levers and thread going and coming into cogs at random so it seems. Can ...
7
votes
9answers
576 views

Best calculator software to help programmers

As a embedded systems programmer I always need to make lots of base conversions (dec to hex, hex to bin and so on...), and I must admit: Windows 7 calculator is a good calc, but too limited in my ...
7
votes
7answers
6k views

C# Math calculator [closed]

Possible Duplicates: Is there a string math evaluator in .NET? Converting string expression to Integer Value using C# Best and shortest way to evaluate mathematical expressions c# ...
6
votes
12answers
11k views

Best Programmer Calculator for iPhone [closed]

What is the best programmer's calculator application for the iPhone?
5
votes
4answers
951 views

C++ simple operations (+,-,/,*) evaluation class

I am looking for a C++ class I can incorporate into a project I am working on. the functionality I need is evaluation of string operations to numerical form: for example "2 + 3*7" should evaluate to ...
4
votes
5answers
125 views

about layouts in simple calculator

hi there i am trying to make a calculator with coding sizes,layouts etc. by myself (trying to not use NetBeans and it is not a homework). but i am facing with a problem about empty spaces. i have a ...
4
votes
3answers
129 views

Is there a better way to implement this?

I'm writing a calculator in Python (as an exercise), and there's one bit that I'm wondering about. The program splits up the input into a list of numbers and operators. The result is then computed ...
4
votes
3answers
293 views

php program to find the my birthday where day name “Monday” for another 100 years

I was born in 1986-04-21, which is Monday. My next birthday with day name "Monday" is 1997-04-21 and so on. I wrote the program to find upto 100 year to find which year my birthday comes with ...
4
votes
4answers
412 views

JavaScript Calculations within an HTML table

I'm pretty new to JavaScript, so I don't even know if this is the correct language to attempt this, but I figured that I would try. I've read several other posts and I'm not finding something that's ...
4
votes
2answers
229 views

How to implement a grapher in C#

So I'm writing a graphing calculator. So far I have a semi-functional grapher, however, I'm having a hard time getting a good balance between accurate graphs and smooth looking curves. The current ...
4
votes
2answers
402 views

Z80 (TI-83+) stops working on CALL

Every time I assemble an application for the TI-83+ calculator (Z80 processor), it stops running at CALL. Here is an example ("Hello") — it starts running just fine, but the calculator freezes at the ...
3
votes
3answers
51 views

Javascript Calc if 1 multiple by 2 for example

Hi I need help creating a javascript calculator. Unfortunately, I'm not even sure how to search for an answer so I thought I would start here. I need a calculator that multiplies a number based on ...
3
votes
2answers
81 views

Splitting input string for a calculator

I'm trying to split the input given by the user for my calculator. For example, if the user inputs "23+45*(1+1)" I want to this to be split into [23,+,45,*,(,1,+,1,)].
3
votes
3answers
44 views

how do I get rid of isNaN from form results?

I'm creating a little calculator. Part of this will allow you to input upto 4 numbers but you could just have 1,2 or 3 as well. I've got the code working except for when I only enter 1, 2 or 3 numbers ...
3
votes
7answers
135 views

CommandLine Java Calculator

I've just learned java but from my old experience coming from C++ i tought that i can write a commandline calculator wich supports all 4 basic operators with just one line. But i am having a bit of ...
3
votes
2answers
149 views

Trying to Develop PostFix Notation in Tree Using Perl

I'm using Perl to run through a tree, and then calculate the leaf nodes of the tree using the internal nodes as operators. I want to be able to print this in a postfix manner, and I managed to this ...
3
votes
1answer
143 views

Minimalistic approach for a Snake-style game

I received my TI-82 STATS programmable calculator (which is in fact more of a TI-83) about two days ago - and wanted to program a Snake game with the builtin TI-BASIC language. Although I had to find ...
3
votes
4answers
559 views

Launch CALC.EXE and retrieve value using VB6

EDIT Just to clarify, there is no intent of putting this into production. Purely from a coding/automatiion standpoint, and ignoring the fact that there are modules out there to do calcuations, how ...
3
votes
7answers
1k views

Derivative Calculator

I'm interested in building a derivative calculator. I've racked my brains over solving the problem, but I haven't found a right solution at all. May you have a hint how to start? Thanks I'm sorry! I ...
3
votes
4answers
387 views

How do calculators work with precision?

I wonder how calculators work with precision. For example the value of sin(M_PI) is not exactly zero when computed in double precision: #include <math.h> #include <stdio.h> int main() { ...
3
votes
3answers
327 views

Recognizing Tail-recursive functions with Flex+Bison and convert code to an Iterative form

I'm writing a calculator with an ability to accept new function definitions. Being aware of the need of newbies to try recursive functions such as Fibonacci, I would like my calculator to be able to ...
3
votes
6answers
2k views

Decimal point in calculator c#

AHHHHH ok this is driving me nuts. Why when does my decimal point in the wrong place e.g. if i have the string 567 in the textbox and click the decimal button i would expect (or i want) the textbox ...
3
votes
2answers
1k views

Win Form Calculator: Buttons 0 - 9 Event handler to perform repetitive task

I have a win form UI that looks like a typical calculator. Naturally I do not want to rewrite the same logic for every single numeric button(0-9). I want to be able to know which button was clicked so ...
3
votes
30answers
3k views

What calculator is an aid to you as a programmer? [closed]

I have decided to break down, and buy a calculator to use at work. One that I can hold in my hand. The features I want involve HEX/OCT/DEC/BIN conversion, and the basic statistical functions and ...
2
votes
2answers
46 views

How to Create a Shipping Cost Calculator in Java

I am creating a calculator to calculate shipping costs. The code goes something like this: class ShippingCalc { public static void main(String[] args) { int weight = 30; if ...
2
votes
3answers
72 views

Lua - How do I use a function from another script?

I've been looking around and I have not been able to find anything that has worked for me. I'm starting to learn more Lua and to start off I'm making a simple calculator. I was able to get each ...
2
votes
3answers
102 views

Java Calculator Displaying Incorrect Results

Having a bit of trouble with my program, it is displaying the wrong results and when you try to do the calculations for a single digit you will get a error. Program posted below, any help is ...
2
votes
3answers
75 views

.Net text calculator (formula parser)

I am going to implement custom server side validation of numeric user input. All is what I nee is to be able to feed a formula to the calculator, feed parameters and get the result back. The formula ...
2
votes
2answers
169 views

How do I change the number of decimal places iOS?

I have a simple calculator app and I want it to be so that if the answer requires no decimal places, there are none, just whole numbers. If the answer was 2, I don't want it to say 2.000000, it should ...
2
votes
7answers
118 views

CommandLine Java Calculator miscalculates

Ive just learned java and asked a question about my one line calculator it doenst give error anymore but it miscalculates. Here is the code import java.util.Scanner; public class omg { public ...
2
votes
0answers
184 views

offline voice recognization for voice calculator

i am building an application "Voice Calculator" which takes input as a voice and display result based on the input. i dont want to use a google servers for voice recognization, is there any way ...
2
votes
4answers
537 views

Simple calculator program in Java. No. of integers read and Average

I have a task that requires me to print out the following quantities: I need to write a java program that can calculate: 1. the number of integers read in 2. the average value—which need not be an ...
2
votes
5answers
216 views

Python Calculator Divide by Zero/Sqrting a Neg. Int. crashing program

Alright, I'm doing this for a project and whenever I attempt to have it divide by zero or square root a negative number that program closes out. I've attempted to find something I can insert into the ...
2
votes
3answers
356 views

Receiving “Control reaches end of non-void function” error message in Xcode

When adding this code to a simple calculator program I receive the error message "Control reaches end of non-void function". Now after reading some response I know that I should be adding a return ...
2
votes
3answers
222 views

Calculator which can take words as input

I want to write a calculator which can take words as input. for e.g. "two plus five multiply with 7" should give 37 as output. I won't lie, this is a homework so before doing this, I thought if I can ...
2
votes
0answers
364 views

Convert (heavily formula-loaded) Excel spreadsheet to user-friendly web calculator

I need to create a webtool that takes several input values and generates a number of outputs based on complex sequences of arithmetic calculations in an Excel workbook. I am thinking of hard-coding ...
2
votes
1answer
1k views

Odd and Even number Calculator

I need to do a programme that checks if the number a user enters is odd or even and then adds together all the odd numbers and all the even numbers seperately and displays the total in a label. My ...
2
votes
2answers
177 views

Paste CSV values into several Form fields in any web page

The Problem: There are many good Scientific Calculator pages on the Web. Some Calculator pages have a large text area, where you can just paste your input CSV values, directly. But...some ...
2
votes
7answers
566 views

Is “Calculator bug” a code issue?

I have seen this bug in many blog posts: http://atifsiddiqui.blogspot.com/2010/11/windows-calculator-bug.html Is this bug a code bug or a mathematical imprecision ? I am wondering if its really a ...
2
votes
3answers
297 views

Calculator Project Problem

Ok I'm having a problem with this calculator. I've been assigned the project and I can only use addition and subtraction. The first part of the assignment was to create it using Scanner class. So I ...
2
votes
5answers
288 views

Hexadecimal Calculator Features. What do you want?

I plan on making a Hex Calculator one of these weekends for my android phone. I would like to put it up as a free application on the android market when I'm done. As a programmer, what do you think ...
2
votes
3answers
2k views

Open Windows' Calculator in my C# Win Application?

I know I can open Windows Calculator with the following code : System.Diagnostics.Process.Start("calc"); But I wanna open it in my C# Win Application, i.e : I don't want to open it in the ...
2
votes
5answers
393 views

Binary to standard digit?

I'm going to make a computer in Minecraft. I understand how to build a computer where it can make binary operations but I want the outputs to be displayed as standard integer numbers. How you ...
2
votes
1answer
403 views

Android:I need a slide in calculator type soft keypad a la iphone

I'm attempting to replicate on android an iphone app my company had developed externally. My need is simple but it seems hard to achieve under android. I have three numeric edittext inputs. Each ...
2
votes
2answers
376 views

Javascript calculator as users type numbers

I'm a noob at Javascript, but I'm trying to implement something on my website where users can type a quantity, and the subtotal updates dynamically as they type. For example: if items are 10 dollars ...
2
votes
2answers
215 views

Making my own Carbon Footprint Calculator [closed]

I'm trying create my own carbon footprint calculator, but I'm having trouble finding all the proper equations and such online, anyone know of any decent resources?
2
votes
1answer
579 views

How to invoke the Android calculator from an app

I want to invoke the android calculator from within my app. I don't want to pass anything to it, just provide a quick launch button to it. Can anyone show me how or point me to an example of how to ...
2
votes
4answers
2k views

c# how to get keydown and button click to do the same thing?

I am new to C#.I am learning to make a calculator just like ms windows calculator.the buttons work when i click it, but I want the numpad to work too. Suppose the user types '0', it should be the same ...

1 2 3 4 5