You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

155 lines
2.7 KiB

2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
  1. package programmiermethoden_und_Werkzeuge;
  2. import java.util.Scanner;
  3. public class Taschenrechner {
  4. static int addition(int a, int b) {
  5. return a + b;
  6. }
  7. static int multiplikation(int a, int b) {
  8. return a * b;
  9. }
  10. static int division(int a, int b) {
  11. return a / b;
  12. }
  13. static int potenzieren(int a, int b) {
  14. int temp = 1;
  15. if(b == 0) {
  16. return 1;
  17. }
  18. for(int i = 0; i < b; i++) {
  19. temp = temp * a;
  20. }
  21. return temp;
  22. }
  23. static boolean kleinerAls(int a, int b) {
  24. return a < b;
  25. }
  26. static boolean groeßerAls(int a, int b) {
  27. return a > b;
  28. }
  29. static boolean gleich(int a, int b) {
  30. return a == b;
  31. }
  32. static int randomNummer(int a, int b) {
  33. //Zufällige Nummer von a bis b
  34. int temp = 0;
  35. temp = (int) (Math.random() * (b + 1) ) + a;
  36. return temp;
  37. }
  38. static double pie() {
  39. return Math.PI;
  40. }
  41. static int eingabe() {
  42. Scanner scan = new Scanner(System.in);
  43. try{
  44. int intScan= scan.nextInt();
  45. }catch(Exception e){
  46. System.out.println("Fehler bei der Eingabe!");
  47. }
  48. // scan.close();
  49. return intScan;
  50. }
  51. static void startTaschenrechner() {
  52. //Funktion zum Starten des Taschenrechnerprogramms
  53. System.out.println("1.Addition, 2.Multiplikation, 3.Division, 4.Potenzieren, 5.kleinerAls, 6.groeßerAls, 7.Gleichgroß, 8.Zufällige Zahl, 9.PI");
  54. Scanner scan = new Scanner(System.in);
  55. int s = scan.nextInt();
  56. // scan.close();
  57. switch (s) {
  58. case 1: {
  59. System.out.println("Addition\n");
  60. System.out.println("Ergebnis:" + addition(eingabe(), eingabe()));
  61. break;
  62. }
  63. case 2: {
  64. System.out.println("Division\n");
  65. System.out.println("Ergebnis:" + division(eingabe(), eingabe()));
  66. break;
  67. }
  68. case 3:{
  69. System.out.println("Multiplikation\n");
  70. System.out.println("Ergebnis:" + multiplikation(eingabe(), eingabe()));
  71. break;
  72. }
  73. case 4:{
  74. System.out.println("Potenzieren\n");
  75. System.out.println("Ergebnis:" + potenzieren(eingabe(), eingabe()));
  76. break;
  77. }
  78. case 5:{
  79. System.out.println("KleinerAls\n");
  80. System.out.println("Ergebnis:" + kleinerAls(eingabe(), eingabe()));
  81. break;
  82. }
  83. case 6:{
  84. System.out.println("GroeßerAls\n");
  85. System.out.println("Ergebnis:" + groeßerAls(eingabe(), eingabe()));
  86. break;
  87. }
  88. case 7:{
  89. System.out.println("Gleich\n");
  90. System.out.println("Ergebnis:" + gleich(eingabe(), eingabe()));
  91. break;
  92. }
  93. case 8:{
  94. System.out.println("RandomNummer\n");
  95. System.out.println("Ergebnis:" + randomNummer(eingabe(), eingabe()));
  96. break;
  97. }
  98. case 9:{
  99. System.out.println("Pi\n");
  100. System.out.println("Ergebnis:" + pie());
  101. break;
  102. }
  103. default:
  104. throw new IllegalArgumentException("Unexpected value: " + s);
  105. }
  106. }
  107. }