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