Advertisement
dllbridge

Untitled

Dec 12th, 2022
578
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.93 KB | None | 0 0
  1.  
  2.  
  3. #include   <stdio.h>
  4.  
  5. int    n = 7;
  6. int    i = 2;
  7.  
  8. ////////////////////////////////////////////////////    
  9. int main()                                        //
  10. {
  11.  
  12.    
  13.     a2Dima:
  14.            
  15.     printf("%d * %d = %d\n", n, i, n*i);
  16.        
  17.     if(i++ > 8) goto L_01;
  18.    
  19.     goto a2Dima;
  20.  
  21. L_01: return 0;
  22. }
  23.  
  24.  
  25.  
  26.  
  27.  
  28.  
  29.  
  30.  
  31.  
  32. /*
  33.  
  34.  
  35. #include   <stdio.h>
  36.  
  37. int    n = 7;
  38.  
  39.  
  40.  
  41. ////////////////////////////////////////////////////    
  42. int main()                                        //
  43. {
  44.  
  45.     for(int i = 2; i < 10; i++)
  46.     {
  47.        
  48.        
  49.         printf("%d * %d = %d\n", n, i, n*i);
  50.     }
  51.    
  52.  
  53. }
  54.  
  55. */
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64. /*
  65. #include   <iostream>
  66. using namespace std;
  67. #include   <stdio.h>
  68.  
  69. int    n;
  70.  
  71. double f;
  72.  
  73. ////////////////////////////////////////////////////    std::
  74. int main()                                        //
  75. {
  76.  
  77.     printf("sizeof int = %d \n", sizeof(n));
  78.  
  79.     cout << "Hello !\n";
  80. }
  81.  
  82.  
  83.  
  84.  
  85. */
  86.  
  87.  
  88.  
  89.  
  90.  
  91.  
  92.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement