题解 2778: 判断数正负

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

筛选

普普通通的解题方法

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

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

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

判断数正负

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

2778: 判断数正负

摘要:解题思路:我选择的是if ....else if....else 的条件分支注意事项:不要漏东西啊!!!!!!!我老是漏参考代码:#include<stdio.h>int main(){    int……

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

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

2778: 判断数正负

摘要:```c #include int main() { int n; scanf("%d",&n); if(n>0) printf("positive");……

判断数的正负

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

五星好评,返现两元哦!

摘要:解题思路:注意事项:参考代码:#includemain (){double N;scanf("%d",&N); if(N>0){printf("positive");}else if(N ==0){p……

编写题解 2778: 判断数正负

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