Archive
Archive for January 9, 2009
Java Program to find weather a given string is palindrome or not – Q18
January 9, 2009
Leave a comment
Q18: Java Program to find weather a given string is palindrome or not
import javax.swing.*;
class palindrome{
public static void main(String args[]){
String wd;
int i, len;
boolean ispal;
wd = JOptionPane.showInputDialog("Enter a Word:");
len = wd.length();
i=0;
ispal=true;
for(;i<=len;){
if(wd.charAt(i) == wd.charAt(len-1)){
i++;
len--;
}
else{
ispal = false;
break;
}
}
if(ispal==true)
System.out.println("The String " + wd + " is Palindrome.");
else
System.out.println("The String " + wd + " is not Palindrome.");
}
}
… from College notes (BCA/MCA assignments):
Categories: Java
Java Basic Programs, Palindrome
Java Program to convert binary to decimal – Q17
January 9, 2009
Leave a comment
Q17: Java Program to convert binary to decimal
import javax.swing.*;
class bin_dec{
public static void main(String args[]){
int bin, dec, i, x;
String inp;
//bin = Integer.parseInt(args[0]);
inp = JOptionPane.showInputDialog("Enter a Binary
Number:");
bin = Integer.parseInt(inp);
i=0;
dec = 0;
while(bin != 0){
x = bin % 10;
dec += x * Math.pow(2,i);
bin /= 10;
i++;
}
System.out.println("Decimal: " + dec);
}
}
… from College notes (BCA/MCA assignments):
Categories: Java
Binary to Decimal, Java Basic Programs




