Advertisement
Lusien_Lashans

Вероятностная модель эксперимаента

Apr 8th, 2018
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.21 KB | None | 0 0
  1. public class Main {
  2.     public static void main(String[] args) {
  3.         int x;
  4.         x = 1;
  5.         for (int i=1; i<=10; i++){
  6.             x+=Math.pow(6,i);
  7.         }
  8.         System.out.println(x);
  9.     }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement