0
votes
3answers
42 views

Change array values to number from string

I have an array with these values: var items = [Thursday,100,100,100,100,100,100] I'm grabbing these from the URL query string so they are all string values. I want all columns except the first to ...
0
votes
2answers
23 views

Octave - array to number

I have an array a=[0 1 0 1 1 0] and I would like to turn the content of that array into a number ( a=010110 ). How do I do that? And I would also like to to the opposite: if I have a number ...
-1
votes
1answer
28 views

array of an even number of integers and pair [duplicate]

I want to make an array of an even number of integers to be given given as pairs in the order and to be like this: height_1, IQ_1, height_2, IQ_2, etc. The input will be like this: ...
1
vote
1answer
59 views

Merge Sort on an array of floating point numbers of fixed size 25 (C programming language)

My code is as follows: void mergeSort(float a[], int first, int last) { //Function performs a mergeSort on an array for indices first to last int mid; //if more than 1 element in ...
1
vote
1answer
104 views

Reading an array with floating point numbers (C programming language)

I am creating a function to read in inputs from the user and put them into a floating point array of numbers with predetermined fix size of 25. It also returns the total amount of items that the user ...
3
votes
5answers
258 views

How do I generate 6 random numbers between 1 and 6 using Java?

I am encountering a problem generating 6 random numbers between 1 and 6 in Java. All the numbers have to be unique. When I enter kolon value 5, the arrays should be like this: 1 2 3 4 5 6 1 2 3 4 5 ...
1
vote
3answers
60 views

Multiplying numbers in a string at specific positions

I'm trying to solve the 8th Project Euler problem. Find the greatest product of five consecutive digits in the 1000-digit number. I'm pretty sure I'm way off. I also tried a simpler program using a ...
-1
votes
1answer
52 views

Getting numbers before Char in Java

I am writing a mathematical program and I came across a problem reading formulas like: AX^2*BX*C=AX^2*BX*C The point is that i want to read the value (including decimals) of A, B and C ...
1
vote
5answers
73 views

How to find closest number in a multidimensional array? [closed]

I got a mulitdimensional array that looks like this: Array ( [0] => Array ( [name] => Name [city] => Cityname [county] => County ...
0
votes
3answers
51 views

how to get more than one number inside of matrices

Ok. I have a simple question although I'm still fairly new to Matlab (taught myself). So I was wanting a 1x6 matrix to look like this below: 0 0 1 0 321, 12 <--- needs to be in one box in ...
0
votes
2answers
26 views

jsonp return number

Hi in my succes function im trying to return 6 numbers from my callback jsonp function and pass to a var, something like; im out of ideas thnx P for (var bw=0; bw < bw_numbers.length; x++) { ...
-4
votes
3answers
64 views

Array with a catch [closed]

Here is what I have to do: Create an Array User inputs 10 double elements Use a catch to make sure it is valid data Then display the data Here's the code so far: static void Main(string[] args) { ...
-2
votes
1answer
73 views

Letters to Numbers [closed]

I am kind of new to java, and am trying to build a letter to number converter. It is part of a larger program, but basically I want to create a very efficient sequence to convert an int to a string. ...
-2
votes
1answer
61 views

My Program breaks randomly [closed]

My program randomly decides to quit working. No Error messages, just pressing the play buttom with nothing happens, and I check my card summary to find that The QuantityInteger to a corresponding ...
-1
votes
1answer
80 views

ArrayIndexOutOfBoundsException error in while loop [closed]

I am trying to work with arrays, and i get a bunch of errors. I am not sure if i am using them wrong, or they simply can't do what i want them to. I want to assign a number to a part of an array, ...
3
votes
4answers
118 views

Javascript max value of array and find where it is?

javascript question here... I need to find the highest number in an array and then return where in the array this number is. It cannot be sorted as this needs to match up with a word in another ...
3
votes
5answers
101 views

Finding the closest number downward to a different number from an array

Example: I have an array like this: [0,22,56,74,89] and I want to find the closest number downward to a different number. Let's say that the number is 72, and in this case, the closest number down in ...
1
vote
3answers
140 views

Find the nearest number of specific number which has specific digit (7)

Well, I have to write a program to find the NEAREST number of given number N which has exactly "K" 7s. For example, if input is: N K 1773 3 Output: 1777 Oh, one more thing is that N can be 100 ...
0
votes
4answers
188 views

Finding how many a specific digit appears in array of numbers (C++)

I'm doing an online challenge and the challenge is the following: "Kids are playing a game called "Counting digits". For given numbers S and K, they firstly write all numbers between those numbers and ...
0
votes
0answers
87 views

Arrays and random number generating

First of all, this is a homework problem. My problem does not have to do with the actual programming, but with understanding what I'm being asked to do. Here is the problem: Draw a flowchart for ...
1
vote
1answer
30 views

Random numbers from an irregular range C

Hello how would I get numbers randomly from a group of specific numbers using arrays in C? Say, I wanted to generate 50 numbers from a set of these numbers: 52 67 80 87 90 95
4
votes
4answers
119 views

Find a number nearest to all numbers in an array

This problem is basically an algorithm optimization problem. We have a list which has n elements. for e.g. {n1,n2,n3...nk} This list is sorted and we have to find out the number ni which is ...
0
votes
2answers
40 views

Checking previous elements of string in C++

#include <iostream> #include <string> using namespace std; int main() { string a; cin >> a; int index = a.find('?'); if(a[index]-1==3) { ...
0
votes
4answers
59 views

how to get the numeric position of the array using php

i want to get the exact numeric position of the value in the array array value: $val = array('banana' , 'second' , 'apple'); when user search for the value apple it will display 3 because ...
3
votes
1answer
145 views

Numbers to Roman Numbers with php

I need to transform ordinary numbers to Roman numerals with php and I have this code: <?php function roman2number($roman){ $conv = array( array("letter" => 'I', "number" ...
0
votes
3answers
236 views

How to enter whole row of elements into 2d array

I'm experimenting with arrays and while I can figure out how to enter the elements of a 2d-array based on user input I cannot figure out how to prompt the user to separately enter entire rows of the ...
1
vote
3answers
110 views

PHP - Generate a random 5 digit number with a exception from an array

I want to generate a random 5 digit number for a file name, with exception. If PHP will generate for example the number 65, I want to be set 00065 (only 5 digit). I have a array who contains a ...
0
votes
3answers
68 views

PHP Specific sort of numbers

I have the following type of array : $foo = array( "a" => 1, "b" => 1, "c" => 2, "d" => 2, "e" => 3, "f" => 3, "g" ...
0
votes
0answers
24 views

occurrence of each integer in an array

Hello Iam trying to count the occurrence of each integer in the user input the program should stop if the user input (0). till now i get wrong result, so any one can help me? int A[50]; int ...
0
votes
6answers
313 views

Find unique numbers in array

Well, I have to find how many different numbers are in an array. For example if array is: 1 9 4 5 8 3 1 3 5 The output should be 6, because 1,9,4,5,8,3 are unique and 1,3,5 are repeating (not ...
-3
votes
4answers
58 views

Find the amount of changes in the sign of number in an array

Basically, I have an array given of "x" numbers and I have to output the amount of how many times the sign changed in the numbers of the array. For example array is: 2 -4 5 6 7 -2 5 -7 The output ...
-1
votes
2answers
108 views

Jquery: Get Highest Number Of An Array [closed]

With jquery, how can I get the highest number of an array? Thanks
0
votes
2answers
65 views

php array phone number fields stored as int

I had a MySQL table with some user data, which I needed to correct and migrate to a new MySQL table. I exported the table using "Export to PHP Array plugin for PHPMyAdmin" from "Geoffray Warnants" ...
0
votes
1answer
62 views

Cannot sort array with randomly generated numbers

I am having trouble getting the array to sort after the random numbers are generated in the array. I think the array is being sorted before all the numbers are assigned. I have tried nesting another ...
-6
votes
5answers
139 views

JAVA: Is there a shorter way of printing out Fibonacci numbers?

Basically, I would like to know if there is a shorter way of printing out the Fibonacci numbers from 0 - 100. What I have done is probably very basic, but here is the code: public static void ...
0
votes
2answers
31 views

Retrieves and display endless amount of numbers in an array

I"m trying to make a program that retrieves an endless amount of numbers that user inputs until the user quits and display the numbers .Here is the code I have so far.After entering the first and ...
0
votes
1answer
35 views

removing number keys from php array

I want to handle JSON data structures that could look like this: $json = {"1":"some content here","hello":"world"}; I use the json_decode method from PHP to transform this into an array: $myArray ...
-1
votes
4answers
74 views

Python - Returning max number in an array. Errors

I have a Python script that connects to a website via FTP and lists the current version numbers of programs located on the website. I created an array to hold the version numbers till the script would ...
0
votes
1answer
582 views

Fill double array with random numbers and then print even and odd numbers from that array

So here's my problem. I have to write a program that will fill array with random numbers(and it's ok), then it's necessary to print only even index numbers or only odd value numbers(j). Tried like ...
-5
votes
3answers
71 views

C - find all the different numbers [duplicate]

Possible Duplicate: Program to print permutations of given elements So, i have number 153 and my program need to output - 135, 153, 315, 351, 513, 531. In other words, all possible numbers. ...
1
vote
3answers
63 views

new to lists on python

This is my current code: while True: try: mylist = [0] * 7 for x in range(7): sales = float(input("Sales for day:")) mylist[x] ...
0
votes
2answers
161 views

Find and Print high number array method Java

What I’m attempting to do is search “gradePsd” array find the highest grade and if there are two grades that are the same value print the name (s) of the students to console. The problem I’m having ...
1
vote
1answer
133 views

In Bash, how to convert number list into ranges of numbers?

Currently I have a sorted output of numbers from a command: 18,19,62,161,162,163,165 I would like to condense these number lists into a list of single numbers or ranges of numbers ...
2
votes
2answers
109 views

Trying to remove roman numerals and numbers from a <String> arraylist

I'm trying to remove things like "I." "II." "279" (page numbers and chapters) etc from a text file of the story "robin hood". So far I cant figure out how to get rid of the numbers (the arraylist is a ...
1
vote
2answers
242 views

How do I generate a random number between -1 and 1?

I am trying to generate a random grid and to represent an empty space, non-empty space and a space where a player is I am using -1, 0 and 1 respectively in a 2D array. I want to be able to generate a ...
2
votes
2answers
80 views

Trying to make a double array, numbered 2 to 50

I'm trying to make a 5 by 10 table using a double array. The first box should be blank, then the rest numbered 2-50. I have this so far but it is not working. int array[][] = new int[5][10]; ...
-1
votes
1answer
856 views

Reverse Number in Java using Array

So, I'm supposed to write a program determining Ermips. I've got the rest figured out, but I'm not sure how to reverse the number correctly? I'm supposed to use an array to reverse it. For example, ...
2
votes
2answers
96 views

How do I set parts of an array to a random value in C#?

I'm new to programming so please bear with me! I am trying to set the parts of an array to random values, but whenever I run the program it sets all parts of the array to the same value. I want them ...
1
vote
3answers
86 views

PHP Insert Numbers not working?

I am inserting tags from a textarea into a database but the issue is that whenever I try to insert the album INT or the track INT it shows up as 0 in the database. If you see the PHP output the values ...
0
votes
2answers
185 views

VB2010 Extract a string of numbers from a string or array

I have a filepath that I would like to pull the starting directory job number from the beginning of the filepath. Except I don't know how to just pull the number string out of the filepath string. ...

1 2 3