Relative Content

Tag Archive for javavariablesswitch-statementconsole-application

Variable in Switch (from second case and further ) might not have been initialized, why?

import java.util.Scanner; public class ProgrammKonsole { public static void main(String[] args) { int n; String patientname; String patientvorname; String geschlecht; String krankenkasse; int alter; int fallzahl = 0; Scanner sc = new Scanner(System.in); n = sc.nextInt(); while (n < 5) { System.out.println(“Willkomme in dem Patientmanagement-tool”); System.out.println(“Wahlen Sie zwischen 1- 5”); System.out.println(“1 – Um einem neuen […]