This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import java.util.Scanner; | |
| public class UVA10222 | |
| { | |
| public static void main(String args[]) | |
| { | |
| Scanner in=new Scanner(System.in); | |
| String standard="1234567890-=qwertyuiop[]asdfghjkl;'zxcvbnm,./"; | |
| while(in.hasNext()) | |
| { | |
| String temp=in.nextLine(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import java.util.Scanner; | |
| public class UVA11332 | |
| { | |
| public static void main(String args[]) | |
| { | |
| Scanner in=new Scanner(System.in); | |
| while(true) | |
| { | |
| String data=in.nextLine(); | |
| if(data.equals("0"))break; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import java.util.Scanner; | |
| public class UVA10008 | |
| { | |
| public static void main(String args[]) | |
| { | |
| Scanner in=new Scanner(System.in); | |
| int data[]=new int[26]; | |
| int Length=0; | |
| int count=in.nextInt(); | |
| String a=in.nextLine(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import java.util.Scanner; | |
| import tim.*; | |
| public class UVA299 | |
| { | |
| public static void main(String[] args) | |
| { | |
| Scanner in=new Scanner(System.in); | |
| dataclass data=new dataclass(); | |
| int count=in.nextInt(); | |
| for(int i=0;i<count;i++) |