Search found 1 match

by murtuza
Mon Oct 27, 2014 8:16 pm
Forum: Volume 4 (400-499)
Topic: 458 - The Decoder
Replies: 71
Views: 27376

Re: 458 - The Decoder

why TL please help me

import java.util.*;
public class Main {

public static void main(String[] args) {
Scanner in=new Scanner(System.in);
while(in.hasNext()){
String s;
s=in.nextLine();
for(int i=0;i<s.length();i++)
{
//char t=(char)((int)s.charAt(i)-7);

System.out.printf("%c",s.charAt ...

Go to advanced search