Skip to content
Maennche Software Development logo
  • Home
  • Marketing
    • Marketing – vCMO
  • Expertise
    • Development
      • Software Development
      • Salesforce Development
      • WordPress Plugin Development
      • Full-Stack Web Development
    • Automation
    • Business Coach
    • About Matthew Maennche
  • Resources
    • C++ Solution Map
    • Java Solution Map
    • Python Solution Map
    • Visual Basic Solution Map
  • FAQ
  • Contact
  • Log In
×
  • Home
  • Marketing
    • Marketing – vCMO
  • Expertise
    • Development
      • Software Development
      • Salesforce Development
      • WordPress Plugin Development
      • Full-Stack Web Development
    • Automation
    • Business Coach
    • About Matthew Maennche
  • Resources
    • C++ Solution Map
    • Java Solution Map
    • Python Solution Map
    • Visual Basic Solution Map
  • FAQ
  • Contact
  • Log In

Write an expression using the conditional operator (? :) that compares the value of the variable x to 5 and results in: x if x is greater than or equal to 5 -x if x is less than 5

LANGUAGE: JAVA

CHALLENGE:

Write an expression using the conditional operator (? 🙂 that compares the value of the variable x to 5 and results in: x if x is greater than or equal to 5 -x if x is less than 5

SOLUTION:

(x >= 5 ? x : -x)

Posted in Java, Learn To Code

Posts navigation

← Given a int variable named yesCount and another int variable named noCount and an int variable named response write the necessary code to read a value into into response and then carry out the following: if the value typed in is a 1 or a 2 then increment yesCount and print out “YES WAS RECORDED” if the value typed in is a 3 or an 4 then increment noCount and print out “NO WAS RECORDED” If the input is invalid just print the message “INVALID” and do nothing else. ASSUME the availability of a variable, stdin, that references a Scanner object associated with standard input.
Write an expression using the conditional operator (? :) that compares the values of the variables x and y. The result (that is the value) of this expression should be the value of the larger of the two variables. →

Additional Resources

Account

Frequently Asked Questions

Privacy Policy

Terms and Conditions

Matthew Maennche logo icon

Get In Touch!

1216 E. Kenosha St Suite 273, Broken Arrow, OK 74012

(918) 352-6109

© 2017 - 2023 Maennche Software Development. All Rights Reserved.

Scroll To Top