Giter Club home page Giter Club logo

stage0-module4-conditions-task1's Introduction

Tasks:

1) True printer.

Create a program that will print "true" to console. Printing command should be placed inside if block which will have "true" in condition part. Program should be implemented in code snippet:

    public class ConditionalTruePrinter {
        public static void main(String[] args) {
        }
    }

2) False printer.

Create a program that will print "false" to console from else part of "if" block. Printing command should be placed inside else block, whereas "if" condition will have "false" in condition part. Program should be implemented in code snippet:

    public class ConditionalFalsePrinter {
        public static void main(String[] args) {
        }
    } 

3) No brackets printer.

Put the brackets to the code snippet so as to not print anything to console in the following code snippet:

    public class NoBracketsPrinter {
        public static void main(String[] args) {
           if(false) 
              System.out.println("The statement is true");
           System.out.println("I'm out of checking");
        }
    }

4) Integer comparison.

Fill the gaps in the code snippet so that the program compiles and prints: "Hello, World!"

    public class IntegerComparison {
        public static void main(String[] args) {
              int x = 50;
              int y = 50;
              __ (x __ y) {
                     System.out.println("Hello, World!");
              }
       }
    }

5) Positive number determiner.

Create a program that will determine and print if consumed number is positive (in this case print true) or no (print false) using if-else block. The program should be implemented inside of code snippet:

    public class PositiveNumberDeterminer {
       public void isPositive(int numberToBeDetermined) {
       }
    }

Where numberToBeDetermined - var that should be used to print if it is positive.

stage0-module4-conditions-task1's People

Contributors

art-orient avatar sukora-stas avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.