Quelle est la valeur de c? essayez de répondre avant d'exécuter le code.
Created
September 12, 2023 12:41
-
-
Save nherbaut/ce2992ecbd3311e48e30bce2131740b9 to your computer and use it in GitHub Desktop.
L2.1.1 Opérations sur les variables exo 2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class TypesL2{ | |
| public static void main(String ...args){ | |
| int a = 3 ; | |
| int b = 1 ; | |
| int c = 2 + a * 5 - b ; | |
| System.out.println(c); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment