Advertisement
Guest User

Untitled

a guest
May 19th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. package com.javarush.task.task04.task0402;
  2. public class Solution {
  3. public static void main(String[] args) {
  4. Apple apple = new Apple();
  5. apple.addPrice(50);
  6. Apple apple2 = new Apple();
  7. apple2.addPrice(100);
  8. System.out.println("Стоимость яблок " + Apple.applesPrice);
  9. }
  10.  
  11. public static class Apple {
  12. public static int applesPrice = 0;
  13.  
  14. public static void addPrice(int applesPrice) {
  15. Apple.applesPrice=Apple.applesPrice+applesPrice ;
  16. }
  17. }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement