1 条题解

  • 0
    @ 2023-10-17 19:59:37

    #include <stdio.h> int main() { int high[10]; int get; int x = 0;

    for (int i = 0; i < 10; i++)
    {
    	scanf_s("%d", &high[i]);
    }
    scanf_s("%d", &get);
    get = get + 30;
    for (int i = 0; i < 10; i++)
    {
    	if (get >= high[i])
    	{
    		x++;
    	}
    }
    printf("%d", x);
    
    
    return 0;
    

    }

    • 1

    信息

    ID
    399
    时间
    1000ms
    内存
    125MiB
    难度
    6
    标签
    递交数
    1199
    已通过
    401
    上传者