Checking Code Snippet

Checking Code Snippet

Java Code

package JavaByMe;

public class Variables {

  public static void main(String[] args) {

  // Variables
  byte a=100;
  int b=383833;
  float c= 99.9f;
  long d= 474847383;
  double e=7484.48484;
  char f='G';
  boolean g=true;
  
  System.out.println(a+"\n"+b+c+d+e+f+g);
  }

}

package JavaByMe;

public class Variables {

  public static void main(String[] args) {

  // Variables
  byte a=100;
  int b=383833;
  float c= 99.9f;
  long d= 474847383;
  double e=7484.48484;
  char f='G';
  boolean g=true;
  
  System.out.println(a+"\n"+b+c+d+e+f+g);
  }

}

Footer

https://ideone.com/fvOmUG

Comments

Popular posts from this blog

R language Coding

INTRODUCTION TO BLOGGING

Given and integer N. Calculate the sum of series 13 + 23 + 33 + 43 + … till N-th term using recursion.