program date;
uses wincrt;

var
m,ch,ch1,ch2,ch3: string ;
mois,j,a,b: integer ;

begin
write('a');read(a);
write('j');read(j);
write('mois');read(mois);
case mois of
1,3,5,7,8,10: if j<31 then
                          begin
                          b:=j+1;
                          m:=str(b,ch)+'/'+str(mois,ch2)+'/'+str(a,ch3);
                          else  if j=31then
                          b:=1;
                          s:=mois+1;
                          m:=concat(str(b,ch),'/',str(s,ch2),'/',str(a,ch3));
                          end
                          else m:='erreur';    
4,6,9,11:if j<30 then
                 begin
                 b:=j+1;
                 m:=concat(str(b,ch),'/',str(mois,ch2),'/',str(a,ch3));
                 end                         
                 else j=30 then
                 begin
                 b:=1;
                 s:=mois+1;
                 m:=concat(str(b,ch),'/',str(mois,ch2),'/',str(a,ch3));
                 end
                 else m:='erreur';
2:if j<28 then
      begin
      b:=j+1;
      m:=concat(str(b,ch),'/',str(mois,ch2),'/',str(a,ch3));
      end
      else if j=28 then
      begin
      b:=1;
      m:=concat(str(b,ch),'/',str(mois,ch2,'/',str(a,ch3));
      end
      else if((a mod 4=0)AND (a mod 100<>0)) or ((a mod 100=0)and(a mod 400=0)) then
               if j<29 then
               begin
               b:=j+1;
               m:=concat(str(b,ch),'/',str(mois,ch2,'/',str(a,ch3));
               end
               else if j=29 then
               begin
               b:=1;
               m:=concat(str(b,ch),'/',str(mois,ch2,'/',str(a,ch3));
               end
               else m:='erreur';
12:if j<31 then
     begin
     b:=j+1;
     m:=concat(str(b,ch),'/',str(mois,ch2,'/',str(a,ch3));
     end
     else if j=31 then
     begin
     b:=1;
     s:=a+1;
     m:=concat(str(b,ch),'/',str(mois,ch2,'/',str(s,ch3));
     end;       
writeln(m);
end.     

this is my program i hope you be able to help me

link|improve this question
1  
What's your program supposed to do? – ptomato Dec 25 '10 at 13:32
2  
You didn't describe what the problem is supposed todo, what is failing and if there are any errors. Without this information, we can't help. – Oded Dec 25 '10 at 13:33
2  
"i have written a program in turbou pascal and it didnt work " - worst title ever – Mitch Wheat Dec 25 '10 at 13:33
2  
damn you, turbo pascal, and your non-working ways! – Uku Loskit Dec 25 '10 at 13:35
1  
Ok, now edit your question to include that description, and also include what does happen when you run the program – Goran Jovic Dec 25 '10 at 13:40
show 5 more comments
feedback

closed as not a real question by ptomato, Mitch Wheat, Quentin, Brad Larson, Graviton Dec 26 '10 at 13:45

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

1 Answer

It may be a good idea to indent the code according to the begin/end-blocks. This make it very easy to spot unpaired begin/end statements.

m:=str(b,ch)+'/'+str(mois,ch2)+'/'+str(a,ch3);

It is a long time since i did something with Turbo Pascal, but if i remember correctly, str is a procedure. So it does not return anything.

In order to simplify your program, it may be a good idea, to only calculate the new variables "b", "mois" and "a" inside the case block. And then do the transformation to a string once after the case-block.

str(b, ch);
str(mois, ch2);
str(a, ch3);
m := ch + '/' + ch2 + '/' + ch3;
link|improve this answer
it worked but i have a new problem – Chaima Chaimouta Dec 25 '10 at 14:11
+1 for helping the needy – David Heffernan Dec 25 '10 at 17:35
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.