Facebook
From Blush Finch, 3 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 86
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. int main()
  5. {
  6.         int A;
  7.         int C;
  8.         printf("Vavedete A: ");
  9.         scanf_s("%d", &A);
  10.         if (A > 10)
  11.         {
  12.                 C = A + 5;
  13.                 printf("C=%d", C);
  14.         }
  15.  
  16.         return 0;
  17. }