Salut
L'erreur d'exécution 104 105 : comment faire pour l'éviter, comment l'ouvrir avec reset ou append ? Merci
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32 program file1; uses wincrt; var f: Text; ch2,ch1,ch: string; c,i:integer; begin assign(f,'C:\code.txt'); appended(f) while not (eof (f)) do readln(f,ch); for i:=1 to length(ch) do begin ch1:=''; c:=ord(ch[i]); str(c,ch2); ch1:=ch1+ch2+'*'; writeln(f,ch1); end; close(f); end.![]()
Partager