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.

159 lines
2.8 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
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 randomIntegerNummer(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 pi() {
  39. return Math.PI;
  40. }
  41. static double e() {
  42. return Math.E;
  43. }
  44. static int eingabe() {
  45. Scanner scan = new Scanner(System.in);
  46. int intScan = 0;
  47. try{
  48. intScan= scan.nextInt();
  49. }catch(Exception e){
  50. System.out.println("Fehler bei der Eingabe!");
  51. }
  52. // scan.close();
  53. return intScan;
  54. }
  55. static void startTaschenrechner() {
  56. //Funktion zum Starten des Taschenrechnerprogramms
  57. System.out.println("1.Addition, 2.Division, 3.Multiplikation, 4.Potenzieren, 5.kleinerAls, 6.groeßerAls, 7.Gleichgroß, 8.Zufällige Zahl, 9.PI");
  58. Scanner scan = new Scanner(System.in);
  59. int s = scan.nextInt();
  60. // scan.close();
  61. switch (s) {
  62. case 1: {
  63. System.out.println("Addition\n");
  64. System.out.println("Ergebnis:" + addition(eingabe(), eingabe()));
  65. break;
  66. }
  67. case 2: {
  68. System.out.println("Division\n");
  69. System.out.println("Ergebnis:" + division(eingabe(), eingabe()));
  70. break;
  71. }
  72. case 3:{
  73. System.out.println("Multiplikation\n");
  74. System.out.println("Ergebnis:" + multiplikation(eingabe(), eingabe()));
  75. break;
  76. }
  77. case 4:{
  78. System.out.println("Potenzieren\n");
  79. System.out.println("Ergebnis:" + potenzieren(eingabe(), eingabe()));
  80. break;
  81. }
  82. case 5:{
  83. System.out.println("KleinerAls\n");
  84. System.out.println("Die erste Zahl ist kleiner:" + kleinerAls(eingabe(), eingabe()));
  85. break;
  86. }
  87. case 6:{
  88. System.out.println("GroeßerAls\n");
  89. System.out.println("Die erste Zahl ist groeßer:" + groeßerAls(eingabe(), eingabe()));
  90. break;
  91. }
  92. case 7:{
  93. System.out.println("Gleich\n");
  94. System.out.println("Gleichgroß:" + gleich(eingabe(), eingabe()));
  95. break;
  96. }
  97. case 8:{
  98. System.out.println("RandomNummer\n");
  99. System.out.println("Zufaellige Zahl:" + randomIntegerNummer(eingabe(), eingabe()));
  100. break;
  101. }
  102. case 9:{
  103. System.out.println("Pi\n");
  104. System.out.println("Pi:" + pi());
  105. break;
  106. }
  107. default:
  108. throw new IllegalArgumentException("Unexpected value: " + s);
  109. }
  110. }
  111. }