Golden October online programming competition first question: Little Girl count questions details:
[Golden October online programming Competition Rules]
A little girl is counting from 1 to n with her left hand fingers. She starts counting from the thumb as 1. Then, the index finger is 2, the middle finger is 3, the ring finger is 4, and the small finger is 5. Next, adjust the direction. The ring finger is counted as 6, the middle finger is 7, the index finger is 8, and the thumb is 9. Which finger will be parked at the end of the question? The numbers 1, 2, 3, 4, and 5 represent the thumb, index finger, middle finger, ring finger, and small finger in sequence.
Input Format:
Enter multiple groups of data. Each group of data occupies one row and contains only one integer N (1 <=n <= 1000000000 ).
Output Format:
Each group of data occupies one row and only contains an integer between 1 and 5, indicating the last stop finger.
Q & A description:
Input example:
1
10
1000000000
Output example:
1
2
2
/* 1 2 3 4 5 (finger) 1 2 3 4 59 8 7 6 10 11 12 13 16 15 14 ..... */# Include "stdio. H" int main () {long n; while (~ Scanf ("% LLD", & N) {int result; Result = n % 8; If (result = 0) {printf ("2 \ n ");} else if (result <6) {printf ("% d \ n", result);} else {printf ("% d \ n", 10-result );}} return 0 ;}
Challenge programming of csdn-the first question of the Golden October online programming competition: the number of girls