17 条题解

  • -1
    @ 2022-2-9 11:28:24

    #include <stdio.h> int main() { int n; scanf("%d", &n); bool a = false;

    if (n % 3 == 0) {
        printf("%d ", 3);
        a = true;
    }
    
    if (n % 5 == 0) {
        printf("%d ", 5);
        a = true;
    }
    
    if (n % 7 == 0) {
        printf("%d ", 7);
        a = true;
    }
    
    if (!a)
        printf("n");
    

    }

    信息

    ID
    864
    时间
    1000ms
    内存
    128MiB
    难度
    6
    标签
    递交数
    1123
    已通过
    345
    上传者