Cours 1 - Principes de Programmation Flashcards

1
Q

Les limites du type int et double?

A

-32 bits à 32 bits

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Deux catégorie d’instruction de contrôle :

A

Selective (if) et Répétitive (while)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Identificateur = ?

A

Nom choisi pour une variable.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Quest-ce qu’une variable?

A

Espace mémoire modifiable

Doit avoir un identificateur

Doit avoir un type

Accessible en tout temps via l’identificateur

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Mots clé pour initialisé un CONSTANTE

A

public [static] final int MAX = 500;

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

En attendant les interfaces utilisateurs (plus tard dans le cours), comment faisons-nous la lecture du clavier?

A

import java.util.Scanner;

class Demarrer {

Scanner clavier = new Scanner(System.in);

public static void main(String[] args){

int x = clavier.nextInt();
}
}

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Quelles sont les fonctions utiles de Scanner(System.in)?

A

clavier. nextInt() //lit et retourne un entier en provenance du clavier
clavier. nextDouble() //lit et retourne un double
clavier. next() //lit et retourne le prochain mot (String)
clavier. nextLine() //lit et retourne toute la ligne (String)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly