Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.java.help > #2296 > unrolled thread

Re: Increase character by one

Started bykkuskiukss@gmail.com
First post2012-11-29 15:43 -0800
Last post2012-11-29 16:30 -0800
Articles 2 — 2 participants

Back to article view | Back to comp.lang.java.help

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  Re: Increase character by one kkuskiukss@gmail.com - 2012-11-29 15:43 -0800
    Re: Increase character by one Lew <lewbloch@gmail.com> - 2012-11-29 16:30 -0800

#2296 — Re: Increase character by one

Fromkkuskiukss@gmail.com
Date2012-11-29 15:43 -0800
SubjectRe: Increase character by one
Message-ID<05234a5f-767b-41a0-af42-143277e8e793@googlegroups.com>
import java.io.* ;

public class ws6q3 {

	public static void main(String [] args){
		
	char L1 = 'D' ;
	char L2 = 'o' ;
	char L3 = 'n' ;

	L1++ ;
	L2++ ;		
	L3++ ;

        System.out.print(+L1+L2+L3) ;
   			

	}
}

[toc] | [next] | [standalone]


#2298

FromLew <lewbloch@gmail.com>
Date2012-11-29 16:30 -0800
Message-ID<84399d75-ba7d-4daa-9a63-7244e0123820@googlegroups.com>
In reply to#2296
On Thursday, November 29, 2012 3:43:32 PM UTC-8, kkusk...@gmail.com wrote:
> import java.io.* ;
> public class ws6q3 {

Class name violates coding conventions.

> 	public static void main(String [] args){
> 
> 	char L1 = 'D' ;
> 	char L2 = 'o' ;
> 	char L3 = 'n' ;
> 
> 	L1++ ;
> 	L2++ ;		
> 	L3++ ;
> 
>         System.out.print(+L1+L2+L3) ;
> 	}
> }

How startlingly parochial of you, and it clearly indicates you didn't read any of the posts 
in this four-year-old thread.

http://www.unicode.org/reports/tr10/
to educate yourself.

What should be next after 'รถ'?

That depends on what language you're sorting.

-- 
Lew

[toc] | [prev] | [standalone]


Back to top | Article view | comp.lang.java.help


csiph-web