Advertisement
dllbridge

Untitled

Dec 17th, 2024
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 2.05 KB | None | 0 0
  1.  
  2. #include   <stdio.h>
  3.  
  4.  
  5.  
  6. /////////////////////////////////////////////////////////////
  7. int main()
  8. {
  9.  
  10.  
  11.     char sz[99] = "AONY";
  12.    
  13.     int i = 3; 
  14.    
  15. L_01:          
  16. //  for( ;i >= 0; )
  17.   //  {    
  18.         printf("%c = %d\n", sz[i], sz[i]);  
  19.         i--;  
  20.  //   }
  21.  
  22.       if(i >= 0) goto L_01;
  23.  
  24. }
  25.  
  26.  
  27.  
  28.  
  29.  
  30.  
  31.  
  32. /*
  33.  
  34. #include   <stdio.h>
  35.  
  36.  
  37.  
  38. /////////////////////////////////////////////////////////////
  39. int main()
  40. {
  41.  
  42.  
  43.     char sz[99] = "SONY";
  44.                
  45.     for(int i = 3; i >= 0; i--)
  46.     {    
  47.         printf("%c = %d\n", sz[i], sz[i]);    
  48.     }
  49.  
  50. }
  51. */
  52. /*
  53. #include   <stdio.h>
  54.  
  55.  
  56.  
  57. /////////////////////////////////////////////////////////////
  58. int main()
  59. {
  60.  
  61.  
  62.     char sz[99] = "SONY";
  63.                
  64.     for(int i = 0; i < 4; i++)
  65.     {    
  66.         printf("%c\n", sz[i]);    
  67.     }
  68.  
  69. }
  70. */
  71.  
  72.  
  73.  
  74.  
  75.  
  76.  
  77.  
  78.  
  79. /*
  80. #include   <stdio.h>
  81.  
  82.  
  83.  
  84. /////////////////////////////////////////////////////////////
  85. int main()
  86. {
  87.     int   n = 3456;
  88.  
  89.     char sz[99] = "SONY";
  90.                
  91.     printf("n = %d\n", n);  
  92.     printf("    %c\n",     'F');        
  93.     printf("    %d\n",     sz[0]);    
  94.    
  95. return 0;
  96. }
  97.  
  98. */
  99.  
  100.  
  101.  
  102.  
  103.  
  104. /*
  105.  
  106. #include   <stdio.h>
  107.  
  108.  
  109.  
  110. /////////////////////////////////////////////////////////////
  111. int main()
  112. {
  113.     int   n = 3456;
  114.     float f = 3.14;
  115.                
  116.     printf("n = %d, f = %.2f\n", n, f);    
  117.     printf("   %s\n",        "SONY");      
  118.    
  119.    
  120.     scanf("%d", &n);
  121.    
  122. return 0;
  123. }
  124.  
  125. */
  126.  
  127. //  Альтернативный вариант простейшей программы. Exe-файл будет "весить" меньше в несколько десятков раз !!!
  128. /*
  129. #include   <stdio.h>
  130. #include  <locale.h>       //  здесь "живёт" setlocale(LC_ALL, "rus");
  131.  
  132.  
  133. /////////////////////////////////////////////////////////////
  134. int main()
  135. {
  136.    
  137.     setlocale(LC_ALL, "rus");
  138.                
  139.     printf("Верные \n символы %d, %d\n", 77, 22);  
  140.     printf("                  %s\n",     "SONY");      
  141.     int n;
  142.    
  143.     scanf("%d", &n);
  144.    
  145. return 0;
  146. }
  147. */
  148.  
  149.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement