J


私信TA

用户名:dotcpp0779769

访问量:1020

签 名:

等  级
排  名 7616
经  验 1292
参赛次数 0
文章发表 13
年  龄 0
在职情况 学生
学  校
专  业

  自我简介:

TA的其他文章

解题思路:

注意事项:

参考代码:

#include<stdio.h>
#include<math.h>
int main()
{
    int N;
    scanf("%d",&N);
    if(-pow(10,9) <= N <= pow(10,9))
    
        if(N > 0)
        
            printf("positive");
        
        else
                if(N == 0)
       
                printf("zero");
          
       
            else
       
                printf("negative");
       
    
    else
    
        printf("您输入的数据不符合题意,请您重新输入!");
    
    return 0;
}


 

0.0分

1 人评分

  评论区

  • «
  • »