Find-String

A collection of 2 post

Find-Uppercase

Problem Write a program that takes a string as input and finds how many uppercase letters in that string. input A string is entered on the first line. The length of the string does not exceed 100. output Prints the number of uppercase letters on the first line. Solution using using code

Find String

Problem Write a program that receives a single string, receives a specific character, and finds out how many of that specific character exists in the inputted string. The length of the string does not exceed 100. input A string is given on the first line, and a character is given on the second line…