1
0

for_show.c 216 B

1234567891011
  1. /* for_show.c */
  2. #include <stdio.h>
  3. int main(void)
  4. {
  5. int num = 0;
  6. for (printf("Keep entering numbers!\n"); num != 6; )
  7. scanf("%d", &num);
  8. printf("That's the one I want!\n");
  9. return 0;
  10. }