/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package cvalorascii;
/**
*
* @autor Esto es un ejemplo,hay más posibilidades
*/import java.io.*;
public class CValorAscii {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
char[] cadena= new char[80];
int i=0;
int car;
try{
while((car=System.in.read()) !='\r' )
{
cadena[i]=(char)car;
if(cadena[i]==10){
break;
}
System.out.println("cadena: "+cadena[i]+ " Ascii:" + (int)(cadena[i]));
i++;
}}
catch(IOException ignorada){}
}
}