Difference between revisions of "Plus/fr"

From Free Pascal wiki
Jump to navigationJump to search
(Created page with " {{Plus}} <div style="float:left; margin: 0 10px 10px 0; padding:40px; font-size:500%; font-family: Georgia; background-color: #f9f9f9; border: 2px solid #777777;">+</div>...")
 
m (use universal Template: Symbols instead of Template: Symbols/fr)
 
Line 18: Line 18:
 
  B := 'two strings ' + 'concatenated'; // -> B = 'two strings concatenated'
 
  B := 'two strings ' + 'concatenated'; // -> B = 'two strings concatenated'
  
{{Symbols/fr}}
+
{{Symbols}}
 
{{Stub}}
 
{{Stub}}
 
[[Category:Pascal/fr]]
 
[[Category:Pascal/fr]]
 
[[Category:Symbols/fr]]
 
[[Category:Symbols/fr]]

Latest revision as of 17:18, 4 May 2020

English (en) suomi (fi) français (fr) русский (ru)

+





Le symbole + (prononcé "plus") est utilisé pour :

  • ajouter deux nombres, ce qui donne un autre nombre somme des deux précédents,
  • ou concaténer deux chaînes de caractères, le résultat est alors une chaînes de caractères.
A := 1 + 3; // -> A = 4
B := 'two strings ' + 'concatenated'; // -> B = 'two strings concatenated'


Barre de navigation par sujet: Symboles Pascal
simples caractères

+ (plus)  •  - (moins)  •  * (astérique)  •  / (barre oblique)
= (égal à)  •  > (supérieur à)  •  < (inférieur à)
. (point)  •  : (deux-points)  •  ; (point-virgule)
^ (Chapeau)  •  @ (at)
$ (Dollar)  •  & (ampersand)  •  # (hash)
' (apostrophe)

Paires de caractères

<> (non égal à)  •  <= (moins ou égal à)  •  := (devient)  •  >= (supérieur ou égal à)

 •  >< (Différence symétrique)  •  // (Double barre oblique)


An editor has declared this article to be a stub, meaning that it needs more information. Can you help out and add some? If you have some useful information, you can help the Free Pascal Wiki by clicking on the edit box on the left and expanding this page.