题解 | #开学?#
开学?
https://www.nowcoder.com/practice/9cc35bd0754f4feca18e10e57c672467
#include <stdio.h>
int main() {
int x, N;
scanf("%d %d", &x, &N);
if ((x + (N % 7)) % 7 == 0) {
printf("7");
} else {
printf("%d", (x + (N % 7)) % 7);
}
return 0;
}

查看4道真题和解析