blob: 0e8d36053cd4853047e955ee48b66716330eba79 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include <stdio.h>
long double x, y;
int main(void){
printf("Mittelwertberechnung\n");
printf("Erster Wert: ");
scanf("%Lf", &x);
printf("\nZweiter Wert: ");
scanf("%Lf", &y);
printf("\nDer Mittelwert ist
%Lf et de %Lf est %Lf.\n",
x, y, (x+y)/2);
return 0; }
|