Skip to content

Tag: char

Generating Random Number of Characters

I have to create a program that reads in the number of character to be printed, and it will print random chars (a-z, A-Z, 0-9 and characters like !, &, $, etc). And the first character to be printed cannot be a number (0-9). So an example output would be like: Length of Variable? 20 a5fTnO$akP_a12BahsiO T…

How do I use the character’s equals() method in Java?

As the String is an object, you need to use the string.equals(string) method to confirm that the two strings are equal. However, why do you use the == to check if two chars are equal, char1 == char2, rather than char1.equals(char2)? Answer Perhaps, this will help to understand the difference on == vs equals.

Count words, java

I want to count words. I use the methods hasNextChar and getChar. The sentence may contain all kind of chars. Here’s my code: It works so far but e.g. when I have a ” . ” at the end it gives me 8 instead of 7 words. Here are some examples of sentences: *„Schreiben Sie ein Praktikanten-Vermit…