por ejemplo:
- Colocan un programa que contiene un arreglo y uno debe buscar donde esta el error.
tambien programas como este y decir que salida producira
Código PHP:
import java.io.*;
class Cifras {
static int total=0;
static int x=0;
static int numCifras(int x){
while(x!=0){
x=x/10;
total+=1;
}
return total;
}
public static void main(String[]args) throws IOException{
BufferedReader leer = new BufferedReader(new InputStreamReader(System.in));
System.out.println("Introduce un nu4mero:");
String linea = leer.readLine();
x= Integer.parseInt(linea);
System.out.println("El numero de cifras es:");
System.out.println(numCifras(x));
}}