Translate the following flowchart code into a Java main method definition. You M
ID: 3687115 • Letter: T
Question
Translate the following flowchart code into a Java main method definition. You MUST declare the identifiers. Use the correct Java operators, curly braces, parentheses and semicolons. I recommend that you type it into NetBeans, make sure you don't have any red underlines (compiler errors), and then copy and paste the code below. The code that you write won't run because the above flowchart is just a fragment and is missing a lot of important details. Don't add anything "extra" to this code, such as input, or output!
T T+1 Sex = 'M" F=F+1 M=M+1Explanation / Answer
/**
* @author Srinivas Palli
*
*/
public class Main {
/**
* @param args
*/
public static void main(String[] args) {
int Age = 18, A = 0, F = 0, M = 0, T = 0;
String Sex = "M";
if (Age == 18) {
A = A + 1;
}
T = T + 1;
if (Sex == "M") {
M = M + 1;
} else {
F = F + 1;
}
}
}
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.