FZU 2026 代码问题

题目:http://acm.fzu.edu.cn/problem.php?pid=2026

代码:

#include<stdio.h>
#include<string.h>

using namespace std;

int main()
{
    int a,b,c;
    while(~scanf("%d%d%d",&a,&b,&c))
    {
        printf("%d\n",a*b*c>=100000 ? 1 : 0);
    }
}


你可能感兴趣的:(FZU 2026 代码问题)