Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
compute
- Page 1
Re: Best way to find a segment of code that matches a given input segment?
Programming
Software Development
2 Months Ago
by Dani
… similarity_scores = [] 4. For each article in the articles list: a.
Compute
the similarity between the target_article and the current article similarity…
Compute Pi Using Arctan formula - C++ Beginner here!
Programming
Software Development
14 Years Ago
by arguav74
… is the assginment description: [QUOTE]We are going to just
compute
the first 15 or so digits of π using doubles. In… any case, to
compute
the value of π, we need a formula for it. Let… from cmath, but let’s write our own function to
compute
arctan. Mathematicians tell us an easy formula to use is…
Program to compute the definite integralno
Programming
Software Development
9 Years Ago
by Sandeep_14
… − 3 x + 2 for x ranging from 2 to 8.
Compute
the same by approximating it by dividing the region into… you are not supposed to integrate it manually and then
compute
the same. Side note: We have given a simple formula… however there exist functions whose integral are not possible to
compute
with our usual manual techniques e.g. ∫ s in(x…
Re: Compute to find Fib- 43
Programming
Software Development
10 Years Ago
by Schol-R-LEA
…(for example) for fib(5), you have to
compute
fib(4) and fib(3), which in turn have…(1) and fib(1) + fib(0), **and then**
compute
fib(2) and fib(1), and so on. The total… of n. It would take quite a while to
compute
fib(43) that way, even in C++ - …aware of. There is an even faster way to
compute
fibonacci numbers using matrices, but I'll just …
Compute pi from infinite series
Programming
Software Development
15 Years Ago
by songweaver
…;Ask the user the number of decimal places you should
compute
Pi to and display the number of terms (counting the… initial 4) that it takes to
compute
Pi to that many places. The formula can be used…] Sample Output: Please enter the number of decimal places to
compute
to: 2 It requires 200 terms to approximate Pi to…
Compute distances between cities using c++
Programming
Software Development
17 Years Ago
by jmvr_danga_14
… i have a problem regarding programming. We are required to
compute
for the distance of a certain city to another city… of new york to los angeles..then the program will
compute
its distance... the output of the said program should be…
Re: Compute pi from infinite series
Programming
Software Development
15 Years Ago
by songweaver
What is it actually asking when it says to
compute
to a certain amount of decimal places? Like in the example the answer is 200 from 2 decimal places, again I was a former music major, not a math person.
Re: Compute pi from infinite series
Programming
Software Development
15 Years Ago
by songweaver
….WriteLine("Please enter the number of decimal places to
compute
to:"); input = Convert.ToInt32(Console.ReadLine()); sum = sum + sign…
Re: Compute pi from infinite series
Programming
Software Development
15 Years Ago
by songweaver
….WriteLine("Please enter the number of decimal places to
compute
to:"); decimalPlaces = Convert.ToDouble(Console.ReadLine()); for (sum=0…
Re: Compute pi from infinite series
Programming
Software Development
15 Years Ago
by songweaver
….WriteLine("Please enter the number of decimal places to
compute
to:"); decimalPlaces = Convert.ToDouble(Console.ReadLine()); while (sum <…
Re: Compute pi from infinite series
Programming
Software Development
15 Years Ago
by songweaver
….WriteLine("Please enter the number of decimal places to
compute
to:"); decimalPlaces = Convert.ToDecimal(Console.ReadLine()); while (Math.Abs…
Re: Compute pi from infinite series
Programming
Software Development
15 Years Ago
by ddanbe
…; // initial approximation of PI double sum = 0.0; // sum to
compute
double sign = 1.0; // sign of the next term of…
compute nth root
Programming
Software Development
14 Years Ago
by lilpinay
… 1 and less than -1 and given an integer Y,
compute
the nth root Z such that Z*Z*Z*Z… values for X and Y and the program calculates Z.
Compute
Z so that when Z is multiplied Y time it…
Compute different fields in array
Programming
Web Development
10 Years Ago
by Meeyo
….value; var multiply = parseInt(num1) * parseInt(num2); document.getElementById('
compute
').value = multiply; } </script> <form name="…;/> <input TYPE="text" ID="
compute
" NAME="result" VALUE="" readonly…
Re: Compute distances between cities using c++
Programming
Software Development
17 Years Ago
by jmvr_danga_14
… and i want to go to Miami..the program will
compute
that distance then it will show that it will pass…
Re: Compute distances between cities using c++
Programming
Software Development
17 Years Ago
by jmvr_danga_14
… it in the program then use the haversine formula to
compute
the distance is that it? can anyone put a sample…
Re: Compute distances between cities using c++
Programming
Software Development
17 Years Ago
by jmvr_danga_14
really? ok tnx...i already got the longitudes and latitudes of the places that i want to
compute
...and put it in a text file..so how am i going to start this?
Compute roots of quadratic with "if" statments
Programming
Software Development
17 Years Ago
by noble3ad
… all, I'm trying to write a program that will
compute
the real roots of the quadratic equation ax^2 + bx…
Compute and Display the sum of digits found in a string!
Programming
Software Development
14 Years Ago
by jefferlyn92
create a method sumOfDigit(String str)
compute
and display the sum of the digits found in str Example: String str = "1234hello12678"; sumOfDigit(str) -> returns 34 ---need some codes guys! can you HELP me?!
Compute the difference between time using perl with ourt modules.
Programming
Software Development
14 Years Ago
by amithlaxman
… 03:58:42 EDT 2011" [/CODE] I need to
compute
the exact time taken some thing like 2 hours or…
Compute A Polynomial Using Horners Method Code Question
Programming
Software Development
13 Years Ago
by userct
I need to
Compute
2x4 +7x3 -15x2 +3x+2 Using Horners Method. When I …
compute the Grades in Php Problems
Programming
Web Development
11 Years Ago
by jovstudios
Hello Guys. i need ur help. I want to
compute
the grades in php. This is My code. <?php …
Compute sinx and cosx using the given formula in C++?
Programming
Software Development
11 Years Ago
by Asus93
…%20plus%20plus/Capture2_zps4d967f99.jpg.html) Here's the formula to
compute
sinx and cosx in C++. here is the code I…
compute runtime?
Programming
Software Development
11 Years Ago
by 203428
hi all; How
compute
runtime of a spicifique programm? if i run same programm several time, in same enviroment, is the execution time will be frozen? i need some ideas,suggestions, explanations. Thanks.
Compute to find Fib- 43
Programming
Software Development
10 Years Ago
by DS9596
How do I write a program to
compute
run-time of a recursive and non-recursive functions to find the 43rd Fibonacci number?
Program which compute number of days between two dates
Programming
Software Development
9 Years Ago
by Sandeep_14
Compute
number of days between two dates of the same year. A date is given as two numbers (day, month). Assume that month of Feb has 28 days
Re: Program to compute the definite integralno
Programming
Software Development
9 Years Ago
by David W
…://www.daniweb.com/software-development/c/threads/499170/program-which-
compute
-number-of-days-between-two-dates You also have not…
Re: Compute income tax
Programming
Software Development
15 Years Ago
by turrence27
…]public static bool IsCardNumberValid(string cardNumber) { int i, checkSum = 0; //
Compute
checksum of every other digit starting from right-most digit… digits not included in first checksum, multiple by two, // and
compute
checksum of resulting digits for (i = cardNumber.Length - 2; i…
Re: Compute running time 5 minute after rester
Hardware and Software
Hardware
7 Years Ago
by rproffitt
What is rester? Also, a "
compute
" can take a very long time. Example? > The Almighty Answer to the Meaning of Life, the Universe, and Everything. It was calculated by the computer Deep Thought for seven million years. So any "
compute
" that takes 5 minutes may be fine.
PHP and MySQL: Can't compute grades
Programming
Web Development
13 Years Ago
by aianne
… :) So I am creating a grading system where users can
compute
student's grades on selected ID Number. The problem is… after clicking the
COMPUTE
button, an "Error!" message display. So far …;<input type="submit" value="
COMPUTE
" name="
compute
"/><br /><br />…
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC