题解 2778: 判断数正负

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

普普通通的解题方法

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; scanf("%d",&n); if (n<0) printf("negative"); if ……

ikun崩溃代码

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int n; scanf("%d",&n); if(n>=0) { if(n>0) { printf(……

题解 2778: 判断数正负 C语言

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    long long int n;    int ret;    do{        ret = scan……

2778: 判断数正负

摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cmath> using namespace std; int main() {     long lo……

编写题解 2778: 判断数正负

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int N;    scanf("%d",&N);    if(N>0)    {        prin……