Advertisement
Guest User

threesiblings

a guest
Dec 13th, 2019
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. #include <stdio.h>
  2. void main(void) {
  3. int card1, card2, card3;
  4. printf("Anglo-saxon wanderer... to find the way you'll require to\n");
  5. printf("...enter three digits (0 to 9), e.g. 1 1 1: ");
  6. scanf("%d %d %d", &card1, &card2, &card3);
  7. printf("The path you seek is https://pastebin.com/x9wnH%c%c%c\n",
  8. '2'+card1,'j'+card2,'E'+card3);
  9. printf("God speed...\n");
  10. return;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement