Page 1 sur 1

Le test du backend C : Pyramide

Publié : jeu. 02/juin/2022 18:49
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 !