Join StudyUp.com Today

It's always free and anyone can join!

Watch StudyUp Demo Video Now

You Recently Visited

Arithmetic Operations

Alvin Said:

How does visual basic treat mixed modes of arithmetic operations?

We Answered:

To solve your problem change the numbers to Int64 or Long.

CType(Number, Long) then you can calculated anything you wish.

Christopher Said:

How does one prove that the arithmetic operations extend into the complex numbers?

We Answered:

Early in the last century Bertrand Russell and Alfred North Whitehead set out to "prove" the basis of mathematics using formal logic. After about 350-some pages, they'd proven that 1 + 1 = 2. Maybe you should have a lot of paper handy before you attempt your "proof."

Herbert Said:

How to write a C program to perform arithmetic operations without using arithmetic operators?

We Answered:

in line with 80x86 Assembly when it comes to those parts (>_O)

Lorraine Said:

How to perform arithmetic operations on two numbers using html?

We Answered:

HTML cannot be used to make dynamic decisions, you will have to use javascript:

example:

<script>
document.write(5+3*2/1)
</script>

which it should write: 11

Erik Said:

Using the 4 integers 2,3,6 and 8 once each in any order and three arithmetic operations, hit the targets 3, 24?

We Answered:

(8 - 6) / 2 * 3 = 3
(8 - 2) / 6 * 3 = 3
8 - 6 - 2 + 3 = 3
6 - 8 + 2 + 3 = 3

3*6 + 8 - 2 = 24

(2 * 8 - 6) * 3 = 30

Discuss It!