This commit is contained in:
Your Name
2023-10-03 23:28:51 +02:00
parent 9a83c28137
commit 42f2899bbf
162 changed files with 9 additions and 13 deletions

View File

@@ -0,0 +1,12 @@
import java.util.*;
class Polynom{
public static void main(String args[]){
Scanner sc = new Scanner(System.in);
int x = sc.nextInt();
int mon1 = 5 * x;
int mon2 = mon1 + 3 * x * x;
mon1 = mon2 + x * x * x;
System.out.println(mon1);
sc.close();
}
}