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.

89 lines
2.1 KiB

2 years ago
2 years ago
  1. #include "funktion.h"
  2. #include <math.h>
  3. #include <stdio.h>
  4. #include <stdlib.h>
  5. #include <string.h>
  6. int main()
  7. {
  8. double a,b,c;
  9. a = getValue('G');
  10. b = getValue('U');
  11. marktanteil(a, b);
  12. printf("Angebotsmenge: ");
  13. a = getValue('a');
  14. printf("Verkaufsmenge: ");
  15. b = getValue('v');
  16. angebotserfolg(a,b);
  17. printf("Anfangsbuchwert: ");
  18. a = getValue('A');
  19. printf("Restbuchwert: ");
  20. b = getValue('R');
  21. Anlagenabnutzungsgrad(a,b);
  22. printf("Gesamtkapital: ");
  23. a = getValue('G');
  24. printf("Anlagevermoegen: ");
  25. b = getValue('A');
  26. Anlagenintensitaet(a,b);
  27. printf("Anlagevermoegen: ");
  28. a = getValue('A');
  29. printf("Umsatz: ");
  30. b = getValue('U');
  31. Anlagenproduktivitaet(a,b);
  32. printf("Arbeitszeit: ");
  33. a = getValue('A');
  34. printf("Produktivitaet: ");
  35. b = getValue('P');
  36. Arbeitsproduktivitaet(a,b);
  37. printf("Kapital: ");
  38. a = getValue('K');
  39. printf("Zinssatz: ");
  40. b = getValue('Z');
  41. printf("Zeitraum: ");
  42. c = getValue('z');
  43. Kalkulatorische_Zinsen(a,b,c);
  44. printf("Fixkosten: ");
  45. a = getValue('F');
  46. printf("Variable Kosten: ");
  47. b = getValue('V');
  48. printf("Verkaufspreis: ");
  49. c = getValue('v');
  50. Kritische_Menge(a,b,c);
  51. printf("Normalzinssatz: ");
  52. a = getValue('N');
  53. printf("Zahlungsintervall: ");
  54. b = getValue('Z');
  55. Effektivverzinsung(a,b);
  56. printf("Investition: ");
  57. a = getValue('I');
  58. printf("Jaehrlicher Cashflow: ");
  59. b = getValue('J');
  60. Cashflow_zu_Gesamtkapital(a,b);
  61. printf("Investition: ");
  62. a = getValue('I');
  63. printf("Jaehrlicher Cashflow: ");
  64. b = getValue('J');
  65. Dynamische_Amortisationszeit(a,b);
  66. printf("Geben Sie die durchschnittliche Verzinsung der Vermoegenswerte ein: ");
  67. a = getValue('V');
  68. printf("Geben Sie die durchschnittlichen Kosten der Kapitalbeschaffung ein: ");
  69. b = getValue('K');
  70. Finanzierungsregeln(a,b);
  71. printf("Geben Sie den Umsatz ein: ");
  72. a = getValue('U');
  73. printf("Geben Sie das Eigenkapital ein: ");
  74. b = getValue('E');
  75. eigenkapital_Rentabilitaeten(a,b);
  76. }