Advertisement
Nairo05

Untitled

Apr 10th, 2019
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.20 KB | None | 0 0
  1. package de.nichtsroffler.test;
  2.  
  3. public class Main {
  4.  
  5.     public static void main(String[] args ) {
  6.        
  7.         int a = 2;
  8.         int b = 3;
  9.    
  10.         int c = a+b;
  11.        
  12.         System.out.println("a+b ergibt"+c);
  13.     }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement