En esta lección, los estudiantes aprenderán cómo desarrollar algoritmos usando Strings. Los estudiantes recorrerán Strings usando un comando For loop y el comado print.length()
(imprimir longitud).
for(int i = 0; i < string.length(); i++)
{
String character = string.substring(i, i+1);
}
Esta lección corresponde al tema 4.3 de Programación Avanzada de Ciencias Computacionales.
Students will be able to:
These are all the activities included in the lesson