题解 | #开学?#

开学?

http://www.nowcoder.com/practice/9cc35bd0754f4feca18e10e57c672467

import java.util.Scanner;

// 注意这里的0就是7
public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        // 星期几
        int num1 = sc.nextInt();
        // 延后几天
        int num2 = sc.nextInt();
        // 结果
        int result = ((num1 + num2) % 7 == 0 ? 7 : (num1 + num2) % 7);
        System.out.println(result);


    }
}
全部评论

相关推荐

无敌虾孝子:喜欢爸爸还是喜欢妈妈
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务