• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Jeanne Boyarsky
  • Ron McLeod
Sheriffs:
  • Paul Clapham
  • Liutauras Vilda
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

a b c

 
Greenhorn
Posts: 19
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
public class counting{
public static void main(String args[]){
for(int i=0;i<10;i++){
System.out.print(" "+i);
}
}
}
/*Result:
0 1 2 3 4 5 6 7 8 9

The way code given above prints 0 to 9 integers. Can we write a code to
print all small alphabets in this fashion
a b c d e f g h i j k l m n o p q ......z*/
 
Ranch Hand
Posts: 68
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Yes, and you can do it with just a slight modification of your code.
Try this:

[This message has been edited by Matthew Jones (edited January 16, 2001).]
 
"The Hood"
Posts: 8521
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
This works because Java thinks in Unicode. The unicode for a=\u0061, b=\u0062 etc.
For a chart of these characters see http://www.unicode.org/charts/PDF/U0000.pdf
reply
    Bookmark Topic Watch Topic
  • New Topic