bool isDivisibleBy3and7 (int N) return ((N % 3)==0 && (N % 7) == 0);
1, 2, 3, 4, 6, 8, 9, 12, 16, 18, 24, 36, 48, 72, 144
71 is, itself an integer but to find a difference you require 3 numbers.71 is, itself an integer but to find a difference you require 3 numbers.71 is, itself an integer but to find a difference you require 3 numbers.71 is, itself an integer but to find a difference you require 3 numbers.
You can use C++ program to decrypt 3 digit number
You don't. You can find the area of geometric figures, not of numbers.
To find the mean of numbers, add all of the numbers together and then divide them by the number of numbers there are. For example if I want to find the mean of 1, 2, and 3. 1+2+3= 6 and there are 3 numbers that I am using to find the mean (1, 2, and 3). So I divide 6 by 3 and get 2 which is the mean.
Cls input "enter two no.s ",a,b sum=a+b print "sum = ";sum end
906609=913*993 I found this using a relatively simple computer program that I wrote.
One numbers 3 times another number.the difference between the numbers 10. Find the numbers.
What you do is multiply all 3 numbers together.
Add the 3 numbers together, and then divide the total by 3. This will give you the median number.
What you are trying to find is the average or mean. You find this by adding all the numbers in a set together and divide by the amount of numbers you added. Example: 1, 1, 2, 2, 3, 3. Find the average (mean). Add all the numbers in the set together: 1 + 1 + 2 + 2 + 3 + 3 = 12 Divide by the amount of numbers you added: You added together 6 numbers: 12 ÷ 6 = 2. Mean of {1, 1, 2, 2, 3, 3} = 2.
#include<stdio.h> void main() { int a[3],i,b; printf("Enter 3 numbers\n"); for(i=0;i<=3;i++) scanf("%d",&a[i]); b=a[0]; for(i=0;i<=3;i++) if(a[i]>b) b=a[i]; printf("The biggest number is %d",b); }