Ask your own question, for FREE!
Computer Science 16 Online
OpenStudy (anonymous):

Macro shots of flowers will typically have a shallow depth of field.true or false

OpenStudy (woodrow73):

import javax.swing.JOptionPane; public class flower { public static void main(String[]args) { char charzard = '*'; boolean invalid = false; String input = ""; do{ if(invalid) { JOptionPane.showMessageDialog(null, "Invalid Input."); } input = JOptionPane.showInputDialog("Do macro shots of flowers " + "typically have a shallow depth of field? y/n"); charzard = input.charAt(0); invalid = true; }while(charzard != 'y' && charzard != 'n'); String notify = charzard == 'y'?"They Do.":"They Don't."; JOptionPane.showMessageDialog(null, notify); System.exit(0); } } @alexhale

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!