Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
Ranked #4K

4 Posted Topics

Member Avatar for olive.ventura

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. …

Member Avatar for stultuske
0
150
Member Avatar for lmthuan

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)); …

Member Avatar for stultuske
0
215
Member Avatar for NeiXude

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 …

Member Avatar for opbasu
0
166
Member Avatar for NeiXude

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" …

Member Avatar for NeiXude
0
123

The End.