Course Hive
Search

Welcome

Sign in or create your account

Continue with Google
or
Java arithmetic is easy! ๐Ÿงฎ
Play lesson

Java tutorial for beginners โ˜• - Java arithmetic is easy! ๐Ÿงฎ

5.0 (4)
40 learners

What you'll learn

This course includes

  • 12 hours of video
  • Certificate of completion
  • Access on mobile and TV

Summary

Keywords

Full Transcript

#java #javatutorial #javacourse public class Main { public static void main(String[] args) { // Arithmetic Operators int x = 10; int y = 2; int z; z = x + y; // ADDITION z = x - y; // SUBTRACTION z = x * y; // MULTIPLICATION z = x / y; // DIVISION z = x % y; // MODULUS System.out.println(z); } }

Course Hive

Continue this lesson in the app

Install CourseHive on Android or iOS to keep learning while you move.

Related Courses

FAQs

Course Hive
Download CourseHive
Keep learning anywhere