Giter VIP home page Giter VIP logo

plan's Introduction

PLAN

JAVE CODE

//INAT

//package exercicio;

import javafx.print.Printer;

public class Aluno {

private String nome;
private double nota2; 
private double nota1;

public Aluno(String nome, double nota2, double nota1) {
    this.nome = nome;
    this.nota2 = nota2;
    this.nota1 = nota1;
}
public  void consultarSituacao(){
    if (calcularMedia() >= 7) {
        System.out.println("Aprovado");
    } else if(calcularMedia() > 5 && calcularMedia() < 7){
        System.out.println("Recuperação");
    } else{
        System.out.println("Reprovado");
    }
}

public double calcularMedia(){
        return(nota1 + nota2) / 2;
}



public String getNome() {
    return nome;
}

public void setNome(String nome) {
    this.nome = nome;
}

public double getNota2() {
    return nota2;
}

public void setNota2(double nota2) {
    this.nota2 = nota2;
}

public double getNota1() {
    return nota1;
}

public void setNota1(double nota1) {
    this.nota1 = nota1;
}

}

package exercicio;

public class Main { public static void main(String[] args) {

    Aluno aluno = new Aluno ("Caio", 10, 10);
    
    System.out.println("nome: " + aluno.getNome());
    System.out.println("Media: " + aluno.calcularMedia());
    aluno.consultarSituacao();
}

}

plan's People

Contributors

cristovive23 avatar

Watchers

 avatar

Forkers

kaiquedap

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.