-
Notifications
You must be signed in to change notification settings - Fork 0
/
WW3.java
53 lines (51 loc) · 2.58 KB
/
WW3.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
import java.util.Scanner;
class ClasseMain{
public static void main(String[] args){
double caisse = 0;
Scanner sc = new Scanner(System.in);
int exCaisse = sc.nextInt();
System.out.println("quels sont vos anciennes caisses ? ");
int recettePublique = sc.nextInt();
System.out.println("quels sont vos recette publique en % mais sans le <<%>> ? ");
int annexion = sc.nextInt();
System.out.println("quel est le total du PIB des pays que vous avez annexé ? ");
int tauxDePertePopularite = sc.nextInt();
System.out.println("par combien votre population est-elle divisé pour calculer votre popularité (si vous ne savez pas, contactez le staff) ? ");
int population = sc.nextInt();
System.out.println("quel est votre population en nombre de millions ? ");
int Musee = sc.nextInt();
System.out.println("combien de musée avez vous construit ? ");
int Propagande = sc.nextInt();
System.out.println("combien de propagande avez vous fait ? ");
int Cinemas = sc.nextInt();
System.out.println("combien de cinéma avez vous construit ? ");
int Usine = sc.nextInt();
System.out.println("combien d'usine avez vous construit ? ");
int Nucleaire = sc.nextInt();
System.out.println("combien de centrale nucléaire avez vous construit ? ");
int Ferme = sc.nextInt();
System.out.println("combien de ferme avez vous construit ? ");
int Port = sc.nextInt();
System.out.println("combien de port avez vous construit ? ");
int PopulariteArbitrairePerdu = sc.nextInt();
System.out.println("Combien de popularité les MJ/roll vous ont fait perdre ? ");
int PopulariteArbitraireGagne = sc.nextInt();
System.out.println("Combien de popularité les MJ/roll vous ont fait gagner ? ");
int Popularite = 75+(Propagande+(Musee*2)+(Cinemas*2)+PopulariteArbitraireGagne)-(5*Nucleaire+PopulariteArbitrairePerdu+(((population*1000000)/tauxDePertePopularite)/1000000));
int PIB = exCaisse+(Usine*2)+(Nucleaire*6)+(Ferme*4)+(Port*3)+((recettePublique/1000)*annexion);
if (Popularite <= 40)
caisse = PIB-(exCaisse*0.2);
else if (Popularite > 40 && Popularite <= 60)
caisse = PIB-(exCaisse*0.1);
else if (Popularite > 60 && Popularite <= 80)
caisse = PIB+(exCaisse*0.1);
else if (Popularite > 80 && Popularite <= 100)
caisse = PIB+(exCaisse*0.2);
if (caisse < 10)
caisse = 10;
else;
caisse = caisse;
System.out.println("vos caisse sont de " + caisse);
System.out.println("votre popularité est égale à:" + Popularite);
}//Fin de la méthode main
}//Fin de votre classe