[Java] Introduction à Java

[Java] Introduction à Java

J'ai même étudié la «progression séquentielle», la «ramification conditionnelle» et la «répétition».

Courir

Hello.java


class Hello {
    public static void main(String[] args){
        System.out.println("Hello");
    }
}

production


Hello

variable

Variable.java


class variable {
    public static void main(String[] arg){
        int var = 1;
        System.out.println(var);
    }
}

production


1

Tableau

Array.java


class Array{
    public static void main(final String[] args) {
        int[] arr = new int[] { 8, 12, 21 };
         System.out.println("petit déjeuner" + arr[0] + "De temps");
         System.out.println("le déjeuner" + arr[1] + "De temps");
         System.out.println("Repas du soir" + arr[2] + "De temps");
    }
}

production


Le petit-déjeuner est à partir de 8 heures
C'est à partir de 12h00 le déjeuner
C'est à partir de 21h00

Branche conditionnelle

Age.java


class Age{
    public static void main(String[] args){
   
      int humidity;
      humidity = 50;

      if (humidity >= 60){
        System.out.println("Humidité" + humidity + "%est");
        System.out.println("Je suis en désordre");
      }else if((humidity <= 60) && (humidity >= 40)){
        System.out.println("Humidité" + humidity + "%est");
        System.out.println("Confortable");
      }else if(humidity <= 40) {
        System.out.println("Humidité" + humidity + "%est");
        System.out.println("Je suis fou");
      }

    }
}

production


L'humidité est de 50%
Confortable

Environnement

Installez JDK et l'éditeur VSCode sous Windows

Les références

Cet article a été rédigé en référence aux informations suivantes. Kinocode / YouTuber de la vidéo d'apprentissage de la programmation

Recommended Posts

[Java] Introduction à Java
Introduction à Java
Introduction à la commande java
[Java] Introduction
[Java] Introduction à l'expression lambda
[Java] Introduction à l'API Stream
[Introduction aux jeux Janken (comme)] Java
Introduction à Ruby 2
[Introduction à Java] À propos des expressions lambda
[Introduction à Java] À propos de l'API Stream
Introduction à la programmation fonctionnelle (Java, Javascript)
Introduction à Micronaut 1 ~ Introduction ~
Introduction à la migration
Introduction à Doma
Introduction à Java pour la première fois # 2
[Introduction à Java] Comment écrire un programme Java
Sortie du livre "Introduction à Java"
Introduction à la surveillance à partir de Java Touching Prometheus
[Introduction à Java] À propos des déclarations et des types de variables
Introduction aux algorithmes avec java --Search (recherche de priorité de largeur)
Java Performance Chapitre 1 Introduction
Introduction aux fichiers JAR
Changements de Java 8 à Java 11
Somme de Java_1 à 100
Introduction à Ratpack (8) - Session
Introduction à l'arithmétique des bits
Introduction à Ratpack (6) - Promesse
Introduction à Ratpack (9) --Thymeleaf
[Java] Connectez-vous à MySQL
Introduction à PlayFramework 2.7 ① Présentation
Introduction à la mise en page Android
Introduction aux modèles de conception (introduction)
Améliorations de Kotlin à Java
Introduction à la commande javadoc
De Java à Ruby !!
Introduction à la commande jar
Introduction à Ratpack (2) -Architecture
Introduction au style lambda
Introduction au développement de Keycloak
Introduction à la commande javac
[Introduction à Java] À propos de la conversion de type (distribution, promotion)
Introduction aux algorithmes avec java --Search (bit full search)
[Mensuel 2017/04] Introduction à groovy !! ~ Comparaison de grammaire / spécification Java ~
Premiers pas avec Groovy pour les ingénieurs Java gênants
[Introduction à Java] Bases de l'arithmétique Java (pour les débutants)
Introduction aux modèles de conception (Builder)
Comment abaisser la version java
Migration de Cobol vers JAVA
[Java] Comment utiliser Map
Java ajoute un tableau au PDF
Comment désinstaller Java 8 (Mac)
Java pour jouer avec Function
Java - Comment créer JTable