Advertisement
insta_guru

🔺 FloydTriangle 🔺 in C

Feb 2nd, 2019
276
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 2.62 KB | None | 0 0
  1. /*
  2. 1
  3. 2   3
  4. 4   5   6
  5. 7   8   9   10
  6. 11  12  13  14  15
  7. 16  17  18  19  20  21
  8. 22  23  24  25  26  27  28
  9. 29  30  31  32  33  34  35  36
  10. 37  38  39  40  41  42  43  44  45
  11. 46  47  48  49  50  51  52  53  54  55
  12. 56  57  58  59  60  61  62  63  64  65  66
  13. 67  68  69  70  71  72  73  74  75  76  77  78
  14. 79  80  81  82  83  84  85  86  87  88  89  90  91
  15. 92  93  94  95  96  97  98  99  100 101 102 103 104 105
  16. 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120
  17. 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136
  18. 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153
  19. 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171
  20. 1
  21. 2   3
  22. 4   5   6
  23. 7   8   9   10
  24. 11  12  13  14  15
  25. 16  17  18  19  20  21
  26. 22  23  24  25  26  27  28
  27. 29  30  31  32  33  34  35  36
  28. 37  38  39  40  41  42  43  44  45
  29. 46  47  48  49  50  51  52  53  54  55
  30. 56  57  58  59  60  61  62  63  64  65  66
  31. 67  68  69  70  71  72  73  74  75  76  77  78
  32. 79  80  81  82  83  84  85  86  87  88  89  90  91
  33. 92  93  94  95  96  97  98  99  100 101 102 103 104 105
  34. 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120
  35. 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136
  36. 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153
  37. 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171
  38. 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190
  39. 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210
  40. */
  41.  
  42. //===================================================================================
  43. #include <stdio.h>
  44.  
  45. void FloydTriangle(int);
  46.  
  47. int const MAX_ROW = 20;
  48. void main() {
  49.  
  50.     printf("%s\n", "Printing Patterns of number using C");
  51.     printf("%s\n", "===================================");
  52.     printf("\n");
  53.  
  54.     int Row = 0;
  55.     printf("Enter Row[1 to %d]: ", MAX_ROW);
  56.     scanf_s("%d", &Row);
  57.  
  58.     printf("\n");
  59.     FloydTriangle(Row);
  60.     printf("\nEnd of the Program!");
  61. }
  62.  
  63. /*
  64. Displays Floyd's triangle
  65. Floyd's triangle is a right-angled triangular array of natural numbers
  66.  1
  67.  2  3
  68.  4  5  6
  69.  7  8  9 10
  70. 11 12 13 14 15
  71. */
  72. void FloydTriangle(int iRow) {
  73.  
  74.     if (iRow > MAX_ROW) iRow = MAX_ROW;
  75.  
  76.     printf("FloydTriangle(%d)\n", iRow);
  77.     printf("=================\n", iRow);
  78.     int Row, Col;
  79.     int Number = 1;
  80.     for (Row = 1; Row <= iRow; Row++) {
  81.         for (Col = 1; Col <= Row; Col++) {
  82.             if (iRow >= 14) {
  83.                 printf("%-3d ", Number);    // Formatting options: "%3d " or "%-3d "
  84.             }
  85.             else {
  86.                 printf("%-2d ", Number);    // Formatting options: "%2d " or "%-2d "
  87.             }
  88.             Number++;
  89.         }
  90.         printf("\n");   // new line for each row
  91.     }
  92. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement