Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.util.Scanner;
- /**
- * 01 Test 1
- * Entrée
- * Sortie attendue
- * 1234567890
- * (123) 456-7890
- *
- * 02 Test 2
- * Entrée
- * Sortie attendue
- * 1111111111
- * (111) 111-1111
- *
- * 03 Test 3
- * Entrée
- * Sortie attendue
- * 1211111111
- * (121) 111-1111
- *
- * 04 Test 4
- * Entrée
- * Sortie attendue
- * 9999999999
- * (999) 999-9999
- */
- class Solution {
- public static void main(String args[]) {
- Scanner in = new Scanner(System.in);
- String S = in.nextLine();
- // Formatage du numéro de téléphone
- System.out.println("("
- + S.substring(0, 3) + ") "
- + S.substring(3, 6) + "-"
- + S.substring(6, 10)
- );
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement