fork download
  1. #include <stdio.h>
  2. int main() {
  3. int A, B;
  4.  
  5. // 1. Begin
  6. // 2. A <- 1
  7. A = 1;
  8.  
  9. // 3. Read B
  10. printf("ป้อนค่า B: ");
  11. scanf("%d", &B);
  12.  
  13. // 4. While A < B do
  14. while (A < B) {
  15. // 4.1. A <- A + 1
  16. A = A + 1;
  17.  
  18. // 4.2. If A < 10 then
  19. if (A < 10) {
  20. // 4.2.1. A <- A + 2
  21. A = A + 2;
  22. } else {
  23. // 4.2.2. B <- B - 1
  24. B = B - 1;
  25. }
  26. }
  27.  
  28. // 5. Write B
  29. printf("ค่า B: %d\n", B);
  30.  
  31. // 6. Write A
  32. printf("ค่า A: %d\n", A);
  33.  
  34. return 0;
  35. }
Success #stdin #stdout 0s 5288KB
stdin
3
stdout
ป้อนค่า B: ค่า B: 3
ค่า A: 4