27 条题解

  • -1
    @ 2024-4-12 20:07:04
    include <iostream>
    #include <stdio.h>
    #include <iomanip>
    #include <math.h>
    using namespace std;
    int main()
    {
    	int N;
    	cin>>N;
    	if(N>0) {
    		cout<<"positive";
    	}
    	if(N==0){
    		cout<<"zero";
    	}
    	if(N<0){
    		cout<<"negative";
    	}
    	return 0;
    

    信息

    ID
    868
    时间
    1000ms
    内存
    128MiB
    难度
    4
    标签
    递交数
    818
    已通过
    367
    上传者