Advertisement
Guest User

Untitled

a guest
May 26th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.22 KB | None | 0 0
  1. package com.company;
  2.  
  3. public class Main {
  4.  
  5.     public static void main(String[] args) {
  6.  
  7.         int a = 6;
  8.         int b = 12;
  9.         float c = 0;
  10.  
  11.         a -= 1;
  12.         c = b / a;
  13.        
  14.        
  15.     }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement