Forum: Java May 28th, 2007 |
| Replies: 12 Views: 6,562 [quote]i know i have combine the even and odd charaCTERS but i dont knoew how to combine? |
Forum: C May 26th, 2007 |
| Replies: 8 Views: 6,708 |
Forum: Java May 26th, 2007 |
| Replies: 12 Views: 6,562 i can find the frequency of the letters but the problem is to from the palindrome from the characters.i am not getting to do it.can u help |
Forum: Java May 21st, 2007 |
| Replies: 12 Views: 6,562 i am not trying to find i am trying to form a palindrome fron the letters of the given string |
Forum: C May 21st, 2007 |
| Replies: 5 Views: 12,988 it is showing that the page doest exit in the server |
Forum: C May 20th, 2007 |
| Replies: 4 Views: 1,448 oh i am sorry in which page it is i couldnt find |
Forum: Java May 20th, 2007 |
| Replies: 12 Views: 6,562 sorry i am not trying to find the given string is palindrome or not,i am trying to find from a given string is it possible to form a palindrome or not?
suppose u input "oppa"
from this string it is... |
Forum: Java May 20th, 2007 |
| Replies: 12 Views: 6,562 how can i check a given string to form a palindrome or not
for(i=0;i<str.length();i++)
{
if(str.charAt(i)==str1.charAt(i)
}
} |
Forum: C May 20th, 2007 |
| Replies: 4 Views: 1,448 how can write a orogram to check whether palindromw is posiible from a given stirng
for(i=0;i<strlen(a);i++0
{
if(a[[i]==b[i])
printf(a[i];
)
} |
Forum: C May 19th, 2007 |
| Replies: 8 Views: 6,708 i want to print words in reverse.
i could print characters in reverse but not words
for(int i=arr.length;i>0;i--)
printf(arr[i]); |
Forum: C May 19th, 2007 |
| Replies: 5 Views: 12,988 i can write a palindrome pro but i dont to write using recursive function can any body help
and to check whether a palindrome can fotmed from a given string?
j=0,k=0;
while((j<strlen(str)-1)/2)
{... |
Forum: C May 19th, 2007 |
| Replies: 7 Views: 4,247 how to complile and execute a c pro in editplus |
Forum: Java Apr 26th, 2007 |
| Replies: 5 Views: 1,637 it is showing the exception "an exception occured while setting smartness"what to do |
Forum: Java Apr 23rd, 2007 |
| Replies: 5 Views: 1,637 1. Write a java program using following details. You are free to make all necessary assumptions. All the assumptions made should be documented.
There are four scientists who need to be... |
Forum: Java Apr 8th, 2007 |
| Replies: 1 Views: 3,202 i want to find the lcm ,cant it be found without using gcd?
class Gcd
{ int a,b;
Gcd(int a,int b )
{
this.b=b;
this.a=a;
}
int gcd( int a,int b) |
Forum: Java Apr 8th, 2007 |
| Replies: 6 Views: 4,801 no i gave all diff values |
Forum: Java Apr 8th, 2007 |
| Replies: 3 Views: 1,329 this is not home work i am not telling u to wriye the code just answer inone line as u know the answer |
Forum: Java Apr 7th, 2007 |
| Replies: 6 Views: 4,801 i want to find the second smallest number ib array but it is displaying second highest number
int max=0,second=0;
if(a[0]>a[1])
{
max=a[0];
second=a[1];
}
else
{
max=a[1]; |
Forum: Java Apr 7th, 2007 |
| Replies: 3 Views: 1,329 1.WHAT IS THEDIFFERNCE BETWEEN LOCAL INNER CLASS AND NON LOCAL INNER CLASS?
2.Is there any tool in java that can create reports ?
3.?What is meant by a resource leak ? |
Forum: Java Apr 3rd, 2007 |
| Replies: 3 Views: 932 ehat is the differencde between error,checked exception and unchecked exception?when occurs at what time?compile time or runtime?which of them can be handled and what not handled?example? |