fork download
  1.  
  2. #include <stdio.h>
  3. // 課題B-2: 資料のような実行結果になるように空欄を埋めてください
  4. void print_number(int n){
  5. printf("%-3d", n);
  6. }
  7.  
  8. void print_star(int n){
  9. print_number(n);
  10. // ここから
  11. for(int i = 1; i <= n; i++) {
  12. printf("*");
  13. }
  14. // ここまでを書けばできます
  15. printf("\n");
  16. }
  17.  
  18. int main(void) {
  19. int i;
  20. for(i = 0; i < 5; i++)
  21. print_star(i);
  22. return 0;
  23. }
  24.  
Success #stdin #stdout 0.01s 5288KB
stdin
Standard input is empty
stdout
0  
1  *
2  **
3  ***
4  ****