题解 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……

判断数正负

摘要:解题思路:注意事项:参考代码:N = int(input())if N > 0:    print("positive")elif N == 0:    print("zero")elif N < 0……

2778: 判断数正负

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

c语言中如何使用倍数(exp版)

摘要:解题思路:注意事项:使用倍数要使用math头文件本人在答案里使用了exp(x)意思是e的x倍数,p是大家常用pow的意思,负数前面加个-就可以了,注意使用scanf参考代码:#include<stdi……

编写题解 2778: 判断数正负

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

判断数正负

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

判断数的正负

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

  编写题解 2778: 判断数正负

摘要:解题思路:注意事项:范围可不写:去掉 import java.util.*;和 if( Math.pow(-10,9) < n && n <= Math.pow(10,9)){}  即可参考代码:im……