fork download
  1. #include <iostream>
  2. #include <stdio.h>
  3.  
  4. using namespace std;
  5.  
  6. void draw_stars(void);
  7.  
  8.  
  9. int main() {
  10. int input;
  11. scanf("%d",&input);
  12. draw_stars();
  13. draw_stars();
  14. return 0;
  15. }
  16.  
  17.  
  18.  
  19. void draw_stars(void)
  20. {
  21. printf(" *\n * *\n*****\n");
  22. }
Success #stdin #stdout 0s 15224KB
stdin
11
stdout
  *
 * *
*****
  *
 * *
*****