C 语言实例 - 判断正数/负数
C 语言教程
· 2019-02-20 17:43:27
用户输入一个数字,判断该数字是正数还是负数或是零。
实例
#include <stdio.h>
int main()
{
double number;
printf("输入一个数字: ");
scanf("%lf", &number);
if (number <= 0.0)
{
if (number == 0.0)
printf("你输入的是 0。");
else
printf("你输入的是负数。");
}
else
printf("你输入的是正数。");
return 0;
}
运行结果:
输入一个数字: 9 你输入的是正数。
点击查看所有 C 语言教程 文章: https://www.codercto.com/courses/l/17.html
Python Machine Learning
Sebastian Raschka / Packt Publishing - ebooks Account / 2015-9 / USD 44.99
About This Book Leverage Python' s most powerful open-source libraries for deep learning, data wrangling, and data visualization Learn effective strategies and best practices to improve and opti......一起来看看 《Python Machine Learning》 这本书的介绍吧!