Advertisement
dllbridge

Untitled

Sep 25th, 2024
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.86 KB | None | 0 0
  1.  
  2.  
  3. #include    <stdio.h>
  4.  
  5.  
  6.  
  7. void ConsolePrint(const char* str, int Colour);
  8. void ConsolePrint(int Y, int X, const char* str, int Colour);
  9.  
  10. /////////////////////////////////////////////////////////////
  11. void _horisont(int nStr, int nPos, int n)
  12. {
  13.      
  14.     for(int i = 0; i < n; i++)
  15.     {
  16.        ConsolePrint(nStr, nPos+i, "*", 11);    
  17.            
  18.     }    
  19. }
  20.  
  21.  
  22. /////////////////////////////////////////////////////////////
  23. void _vert(int nStr, int nPos, int n)
  24. {
  25.      
  26.     for(int i = 0; i < n; i++)
  27.     {
  28.        ConsolePrint(nStr+i, nPos, "|", 11);    
  29.            
  30.     }    
  31. }
  32.  
  33. /////////////////////////////////////////////////////////////
  34. main()
  35. {
  36.      
  37.      ConsolePrint("SONY", 12);
  38.      
  39.     _horisont( 7, 35, 14);
  40.     _horisont(17, 35, 14);
  41.     _vert(8, 35, 9);
  42.     _vert(8, 48, 9);    
  43.      ConsolePrint(" ", 7);
  44. }
  45.  
  46.  
  47.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement