Skip to content

Instantly share code, notes, and snippets.

@nherbaut
Created September 12, 2023 12:41
Show Gist options
  • Select an option

  • Save nherbaut/ce2992ecbd3311e48e30bce2131740b9 to your computer and use it in GitHub Desktop.

Select an option

Save nherbaut/ce2992ecbd3311e48e30bce2131740b9 to your computer and use it in GitHub Desktop.
L2.1.1 Opérations sur les variables exo 2

Quelle est la valeur de c? essayez de répondre avant d'exécuter le code.

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