answersLogoWhite

0

What are Natural Num bers?

User Avatar

Anonymous

15y ago
Updated: 8/18/2019

Positive integers. Or non-negative integers.

No point in arguing, simply ask your teacher which one they mean.

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

What num bers is 49 divisible by?

1, 7 and 49.


How many syllables in the word numbers?

Numbers:2 Num-bers


Give you a free Club Penguin membership code num bers?

here 9273482784727490


Why is rounding num bers easy?

Rounding numbers is easy because their are two rules to rounding numbers. 1) a </= 4 then a = 0 2) a >/= 5 then a = 10


When was Lipman Bers born?

Lipman Bers was born on 1914-05-22.


When did Lipman Bers die?

Lipman Bers died on 1993-10-29.


Is alcohol used in natural flavors processing?

well it is in medicine for making things num


How do you write a c program to convert binary code to Gray code?

unsigned binary_to_gray (unsigned num) { return num ^ (num >> 1); } unsigned gray_to_binary (unsigned num) { /* note: assumes num is no more than 32-bits in length */ num ^= (num >> 16); num ^= (num >> 8); num ^= (num >> 4); num ^= (num >> 2); num ^= (num >> 1); return num ; }


How find input number is prime number in c plus plus?

#include#includebool is_prime (const unsigned num){if (num "Enter a natural number: ";unsigned num;std::cin


Cookie monster phrases?

num num num


What is the Program to find sum of first 'n' natural numbers in c?

#include<stdio.h> int main() { int limit,num,sum=0,i; printf("enter a number"); scanf("%d",&num); for(i=0;i<=num;i++) sum+=i; printf("%d",sum); return 0; }


How do you convert a number into a degree circle?

In simple Python code: def convertToAngle(num): while True: if num < 0: num = 360 - num elif num > 360: num -= 360 else: break return num