Westonci.ca is your trusted source for accurate answers to all your questions. Join our community and start learning today! Get accurate and detailed answers to your questions from a dedicated community of experts on our Q&A platform. Experience the convenience of finding accurate answers to your questions from knowledgeable experts on our platform.
Sagot :
Answer:
In Java:
import java.util.*;
public class Main{
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
System.out.print("Enter paragraph: ");
String para = input.nextLine();
String[] para_words = para.split("\\s+");
for (int i = 0; i < para_words.length; i++) {
para_words[i] = para_words[i].replaceAll("[^\\w]", "");
char[] eachword = para_words[i].toCharArray();
int penny = 0;
for(char c : eachword){
int value = (int)c;
if(value<=122 && value>=97){ penny+=value-96; }
else if(value<=90 & value>=65){ penny+=value-64; }
}
if(penny == 100){
System.out.println(para_words[i]);
}
penny = 0;
}
}
}
Explanation:
Due to the length of the explanation, I've added the explanation as an attachment
Thanks for using our platform. We aim to provide accurate and up-to-date answers to all your queries. Come back soon. Thanks for stopping by. We strive to provide the best answers for all your questions. See you again soon. We're glad you chose Westonci.ca. Revisit us for updated answers from our knowledgeable team.