65,719 views
21 votes
21 votes
In his essay "The Birthright of Human Dignity." Will Thomas writes, "I had condemned my country and my religion because I viewed only what seemed wrong in both. But when I

was able to remove the blinds of my own prejudice, it became clear that these failures, these flaws in church and state, were human failures, human flaws, and not mere self-
willed bigotry, and that within each there were, and there always had been, many who had worked and fought for what was right."
First, in a paragraph, unpack the quoted text, making it simpler to understand. Include other details from the essay.
In the second paragraph, compose your response: Do you agree with him? To what extent? Why?

User Omar Kooheji
by
2.5k points

1 Answer

11 votes
11 votes

Step-by-step explanation:

Problem #1:

A number is divisible by 4 if the last 2 digits of that number are multiple of 4 . So for example the number 2316 is a multiple of 4 because it ends with " 16 " and " 16 " is a multiple of 4 .

Write a program that prompts the user to enter an integer and displays whether the number is a multiple of 4 or not. The program stops reading integers, when the user inputs a negative value. It shows at the end the total number of values entered which are multiple of 4 .

Sample Run:

Enter an integer: 4

4 is a multiple of 4

Enter another integer: 213

213 is not a multiple of 4

Enter an integer: 2316

2316 is a multiple of 4.

Enter an integer: -20

The total number of integers entered which are multiple of 4 is 2 .

User Giannisf
by
3.2k points