Le test du backend C : Pyramide

Vous débutez et vous avez besoin d'aide ? N'hésitez pas à poser vos questions
Avatar de l’utilisateur
threedslider
Messages : 455
Inscription : dim. 01/juil./2018 22:38

Le test du backend C : Pyramide

Message par threedslider »

Hello,

J'ai testé la pyramide en mode console avec le Backend C du Purebasic 6 beta :)

voici le code à tester :

Code : Tout sélectionner

; By threedslider 02/06/2022

; printf under PB_C

CompilerIf #PB_Compiler_ExecutableFormat<>#PB_Compiler_Console 
   CompilerError "Exec-Format must be Console in Compiler-Option"
CompilerEndIf  

CompilerIf #PB_Compiler_Backend<>#PB_Backend_C
  CompilerError "Compiler_Backend must be C in Compiler-Option"
CompilerEndIf

OpenConsole()
!int i, j;
!    for(i=0; i<10; i++)
!    {
!      
!        for(j=i; j<=20; j++)  
!             printf(" ");
! 
!        for(j=40; j<=(i+20)*2; j++)
!              printf("*");
!        printf("\n");
!    }
Input()
CloseConsole()
Happy coding !