Autor Beitrag
Jakob_Ullmann
ontopic starontopic starontopic starontopic starontopic starontopic starofftopic starofftopic star
Beiträge: 1747
Erhaltene Danke: 15

Win 7, *Ubuntu GNU/Linux*
*Anjuta* (C, C++, Python), Geany (Vala), Lazarus (Pascal), Eclipse (Java)
BeitragVerfasst: Mo 27.04.09 20:35 
Bei dem Quellcode hier:

ausblenden Delphi-Quelltext
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
var
  a, b: Extended;
begin
  a := StrToFloat(StringGrid1.Cells[0,0]);
  b := StrToFloat(StringGrid1.Cells[1,0]);
  if a < b then
    ShowMessage('a kleiner als b.');
  // das gleiche:
  if StrToFloat(StringGrid1.Cells[0,0]) < StrToFloat(StringGrid1.Cells[1,0]) then
    ShowMessage('a kleiner als b.'); 
end;


ist mir aufgefallen, dass die Klammer in Zeile 10 nach ShowMessage nicht mit der in Zeile 9 nach StrToFloat gleich positioniert ist.
FinnO
ontopic starontopic starontopic starontopic starontopic starontopic starofftopic starofftopic star
Beiträge: 1331
Erhaltene Danke: 123

Mac OSX, Arch
TypeScript (Webstorm), Kotlin, Clojure (IDEA), Golang (VSCode)
BeitragVerfasst: Mo 27.04.09 20:56 
sehe ich genau so.
Jakob_Ullmann Threadstarter
ontopic starontopic starontopic starontopic starontopic starontopic starofftopic starofftopic star
Beiträge: 1747
Erhaltene Danke: 15

Win 7, *Ubuntu GNU/Linux*
*Anjuta* (C, C++, Python), Geany (Vala), Lazarus (Pascal), Eclipse (Java)
BeitragVerfasst: Mo 27.04.09 20:59 
Scheinbar sind Leerzeichen generell nicht so breit.

edit: Gilt übrigens auch für den Firefox 3.0.10