- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
4 Posted Topics
Re: import java.util.*; public class ReverseThis { static Scanner console = new Scanner(System.in); public static void main(String []args) { String s; //Declare a variable string String x=""; //Initialize the variable x. System.out.print("Enter name:"); s=console.nextLine();//Accept the input... System.out.print(s + "\n");//Print the inputted string. for(int i=s.length()-1;i>=0;i--)//This is how we reverse the inputted string. … | |
Re: import java.util.*; class Upperstr { static boolean Upper(String s){ char [] arrs = s.toCharArray(); String compare = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"; char []xx = compare.toCharArray(); for(int i=0;i<compare.length();i++){ if(arrs[0]==xx[i]) return true; } return false; } static Scanner con = new Scanner(System.in); public static void main(String...args){ System.out.print("Enter a string: "); String str = con.next(); System.out.print(Upper(str)); … | |
I just need to know about the recycle bin.In our company the network administrator configure our computers.Why is that he deleted the recycle bin.He actually don't want us to see the recycle bin...what if we delete some file and we uses the shift+del does the network adminstrator see our deleted … | |
Hi,I am new to mobile and i am still studying the components,layouts,etc..first i want to know how can i put radiogroup in listview, i made another xml file "Radiolayout.xml" but i could not display this in listview. More inputs will be much more appreciated. This is my java file "Sample01.java" … |
The End.