013
05.06.2005, 14:19 Uhr
0xdeadbeef
Gott (Operator)
|
Lauf Aufgabenstellung soll die X-Achse doch vertikal verlaufen, oder? Dann gehts auch deutlich einfacher:
C++: |
#include <stdio.h> #include <math.h>
int main(void) { double x, y, step, a, b, x0, x_end; int i;
printf("step a b x_0 x_end: "); fflush(stdout); scanf("%lf %lf %lf %lf %lf", &step, &a, &b, &x0, &x_end);
for(x = x0; x < x_end; x += step) { y = a * exp(-x * b); for(i = 0; i < y; ++i) putchar('.'); puts("*"); }
return 0; }
|
-- Einfachheit ist Voraussetzung für Zuverlässigkeit. -- Edsger Wybe Dijkstra |