Forum: Java Sep 12th, 2009 |
| Replies: 7 Views: 243 have u got the correct output.. if yes..good |
Forum: Java Sep 12th, 2009 |
| Replies: 7 Views: 243 u have to write a function to convert 3.99999 into 4 .Thats ur job now |
Forum: Java Sep 12th, 2009 |
| Replies: 7 Views: 243 i read in wikipedia and found 4 cube 64 is not a cube the list is 8,27,125 ...many others are giving a decimal values
this is how i counted the standard cubes upto 126
class cubes
{
public... |
Forum: Java Sep 12th, 2009 |
| Replies: 7 Views: 243 Check out this Math.pow(8,1.0/3.0) does not give value 2.
use like this Math.pow(8,1.0/3).
sorry it gives i am working on it..... |
Forum: C Sep 8th, 2009 |
| Replies: 20 Views: 914 is it "a1","b1" ,"c1" or "a1,b1,c1"?
It is a simple concept of array if u have to compare every value u have to give both the entities an index ..[max_length].U have to modify accordingly if the two... |
Forum: C Sep 4th, 2009 |
| Replies: 20 Views: 914 If u say append_test_data is a String array i dont find an index append_test_data[index] while comparing? |
Forum: Java Sep 3rd, 2009 |
| Replies: 7 Views: 409 import java.util.Scanner;
public class listProduct {
public static void main (String[] args){
int productChoice;{
Scanner scanAnything = new Scanner(System.in);
System.out.print("Processed... |
Forum: Python Sep 3rd, 2009 |
| Replies: 6 Views: 442 i find (as far as i saw) u need a change after a comma(,).We will read the file character by character .When we encounter a comma we will go back and print the word..'word',n..something like this |
Forum: Java Sep 3rd, 2009 |
| Replies: 7 Views: 409 Here is how i can explain loop within a loop(nested loop)
for(int i=0;i<4;i++)
{
for(int j=0;j<4;j++)
{
......
}
} |