Ver Mensaje Individual
  #3 (permalink)  
Antiguo 20/10/2010, 09:30
erlolialo
 
Fecha de Ingreso: mayo-2009
Mensajes: 72
Antigüedad: 15 años, 8 meses
Puntos: 0
Respuesta: ayudenme con java por favor

No entiendo muy bien que quieres hacer pero, prueba esto:

Código:
public class forr {

   public static void main (String[] args) {

      int[] notas= new int[9];
      c="x";

      for (int i=0; i<10; i++) {
         notas[i]=i;
      }

      System.out.print("Introduce el numero:");
      int a=CLeer.dEntero();
      notas[a]=c;

      for (int i=0; i<10; i++) {
         System.out.println(notas[i]);
      }