×

Welcome to TagMyCode

Please login or create account to add a snippet.
0
0
 
0
Language: Java
Posted by: raul cava martinez
Added: Feb 2, 2022 7:01 PM
Views: 403
Tags: we
  1.  
  2.     public void comprobarConsumoEnergetico(char letra){
  3.         char c = Character.toUpperCase(consumo);
  4.         switch(c){
  5.             case 'A':
  6.             case 'B':
  7.             case 'C':
  8.             case 'D':
  9.             case 'E':
  10.             case 'F': this.consumo = consumo;
  11.             break;
  12.             default: this.consumo = 'F';
  13.         }
  14.     }