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]);
}