c_cpp 用于检查给定整数是正还是负的C程序

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp 用于检查给定整数是正还是负的C程序相关的知识,希望对你有一定的参考价值。

//C program to check whether a given integer is positive or negative

#include <stdio.h>


int main() {

	int num;

	printf("Enter a number: ");
	scanf("%d", &num);

	if (num >= 0) {
		printf("This is Positive Number.\n");

	}
	else {
		printf("This is negative Number.\n");
	}

	return 0;
}

以上是关于c_cpp 用于检查给定整数是正还是负的C程序的主要内容,如果未能解决你的问题,请参考以下文章

c_cpp 程序检查给定的数字是否是阿姆斯特朗

c_cpp C程序接受两个整数并检查它们是否相等

c_cpp 多线程应用程序,用于添加整数数组。

c_cpp 给定罗马数字,将其转换为整数,反之亦然。

c_cpp 检查/断言类是否具有给定签名的方法。

c_cpp 给定一个整数数组,找到三元组,使得a ^ 2 + b ^ 2 = c ^ 2。