4 条题解
- 1
信息
- ID
- 642
- 时间
- 1000ms
- 内存
- 16MiB
- 难度
- 1
- 标签
- 递交数
- 101
- 已通过
- 89
- 上传者
#include<bits/stdc++.h>
using namespace std;
int main()
{
int n;
cin >> n;
if(n < 0)
{
cout << "-";
}
else
{
cout << "+";
}
return 0;
}//A
#include <iostream>
using namespace std;
int main()
{
int n;
cin >> n;
if(n - n - 1 == 1)
{
cout << "+";
}
else
{
cout << "-";
}
return 0;
}