依旧水题直接题解
2026-01-02 17:40:05
发布于:浙江
0阅读
0回复
0点赞
这么简单直接上新手必会入门题解
#include <bits/stdc++.h>
using namespace std;
int main(){
int a;
cin>>a;
if(a>0)
cout<<"positive";
else if(a==0)
cout<<"zero";
else
cout<<"negative";
return 0;
}
这里空空如也



有帮助,赞一个