Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.java.help > #2296
| Newsgroups | comp.lang.java.help |
|---|---|
| Date | 2012-11-29 15:43 -0800 |
| References | <dbedebbb-8dc6-46ce-a96e-5f60d08c8317@64g2000hsu.googlegroups.com> |
| Message-ID | <05234a5f-767b-41a0-af42-143277e8e793@googlegroups.com> (permalink) |
| Subject | Re: Increase character by one |
| From | kkuskiukss@gmail.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) ;
}
}
Back to comp.lang.java.help | Previous | Next — Next in thread | Find similar | Unroll thread
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
csiph-web