Advertisement
cyruswachong

ROWS C

Oct 20th, 2016
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.33 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <math.h>
  3.  
  4. using namespace std;
  5.  
  6. int main ()
  7. {
  8.     /*im gay */
  9.  
  10.     int num_rows;
  11.  
  12.     printf( "Enter the number of rows in the table to be produced\n");
  13.     printf( "The number of rows must be between 0 and 35\n");
  14.     scanf("%d", &num_rows);
  15.  
  16.  
  17.  
  18.  
  19.  
  20.  
  21.  
  22.  
  23.  
  24.  
  25.  
  26.  
  27.  
  28.  
  29.  
  30.  
  31.  
  32.  
  33.  
  34.  
  35.  
  36.  
  37.  
  38.  
  39.  
  40.  
  41.  
  42. return (0);
  43. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement