Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.util.*;
- /**
- * Objectif
- *
- * Vous devez produire la concaténation de chaînes correcte en fonction du résultat de la somme.
- * Si c'est positif, affichez "Foo".
- * Si c'est négatif, affichez "Bar".
- * Si c'est pair, concaténez " & Baz" à la sortie.
- * Si c'est impair, concaténez " & Qux" à la sortie.
- *
- * Entrée
- * Ligne 1 : Un entier N pour le nombre d'entiers à additionner.
- * Les N lignes suivantes : Un entier positif ou négatif K.
- *
- * Sortie
- * Ligne 1 : Une chaîne de caractères contenant les deux mots corrects.
- *
- * Contraintes
- * -100 <= K <= 100
- *
- * Exemple
- * Entrée
- * 1
- * 6
- *
- * Sortie attendue
- * Foo & Baz
- */
- class Solution {
- public static void main(String args[]) {
- Scanner in = new Scanner(System.in);
- int N = in.nextInt();
- int sum = 0;
- for (int i = 0; i < N; i++) {
- int K = in.nextInt();
- sum += K;
- }
- System.out.print(sum > 0 ? "Foo" : "Bar");
- System.out.print(sum % 2 == 0 ? " & Baz" : " & Qux");
- System.out.println();
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement