first commit

This commit is contained in:
2022-12-07 10:06:14 +01:00
commit 7acee63be6
40 changed files with 433 additions and 0 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();
}
}