10 Einträge, 1 Seite |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#! /usr/bin/perl
$pi = 3.141592654;
print "Eingabe von s: \n"
chomp($s = <STDIN>);
print "Eingabe von r1: \n";
chomp($r1 = <STDIN>);
print "Eingabe von r2: \n";
chomp($r2 = <STDIN>);
$m = $pi/3 * $s * ($r1 + $r2);
print "Ergebniss $m \n";
1
2
Zitat (sri @ 09.04.2005, 18:49)
"channel spammer"
1
2
Zitat (sri @ 09.04.2005, 18:49)
"channel spammer"
use constant PI => 3.14;
my $erg = PI / 42 + 13 * $x * 4711;
1
2
3
puts "hello world" # fehler => aneinanderreihung von 2 kommandos in 1 zeile nur mit; moeglich
puts "hello world"; # so funzts... genauso wie die naechste zeile...
puts "hello world"
M=(r + R) * s * PI
10 Einträge, 1 Seite |