23. Java program to count the number of characters in a string #counting,#corejava,#shorts

preview_player
Показать описание
Java program to count the number of characters in a string

@preethij427#howtolearnjavajava tutorialjava programmingjava tutorial for beginners#shortsvideo
#shorts
Рекомендации по теме
Комментарии
Автор

public static void main(String[] args) {
String s = "Welcome";
int len = s.length();
System.out.println(len);
}
}

mrcrazyking