Call Us:
+91 9437911966
Email Us:
info@studentstutorial.com
Home
C Examples
Server Side
PHP
Java
CodeIgniter
Laravel
JSP
JDBC
Frontend
HTML
CSS
Javascript
jQuery
AJAX
FPDF
TCPDF
APP & DB
Android
Cordova
SQL
Oracle
Project
Menu
Java program for Comparing Value
❮ Previous
Next ❯
ComparingValue.java
class ComparingValue
{
public static void main(String[] args)
{
int x = 0;
if ( (x=5) != 10)
{
System.out.println("Success!");
}
System.out.println("Hello World!");
System.out.println((x=5));
}
}
Output
❮ Previous
Next ❯