#include<stdio.h>
main()
{
int i,n;
clrscr();
printf("enter the value");
scanf("%d", &n);
while(i<=10)
{
printf("\n %d*%d=%d",n,i,(i*n));
i++;
}
getch();
}
Multiplication
There is no program to change your ip address. Your ip address is given to you by your internet service provider.
The factor of a number is a number that you can divide into the original number evenly. For example, 12 can be divided by 1, 2, 3, 4, 6 and 12. Therefore 1, 2, 3, 4, 6 and 12 are called "factors" of 12.
A factor is a number or quantity that when multipled with another produces a given number or expression.
It is a liquid crystal display, the most popular type of computer screen today.
Multiplication
To write a C++ program to display the student details using class and array of object.
write the javascript code to display the reverse no. of given no. (e.g. 247 reverse of 742)
The Identity Property of Multiplication states that when a given number is multiplied by 1, the result equals the given number. Thus, 1 is the multiplicative identity.a x 1= a
#include#includevoid main(){void mul(int n);clrscr();mul(5);//Number to print the Multiplication Tablegetch();}void mul(int n){int i;for(i=1;i
That is because 1 is the identity element of numbers with respect to multiplication.
The program is here guys.......... //Finding whether the given number is perfect or not //Starts here #include<stdio.h> void main() { int i=1,temp=0,number; scanf("%d",&number); while(i<=number/2){ if(number%i==0) temp+=i; i++; } if(temp==number) printf("Its a perfect number"); else printf("Its not a perfect number"); } //ends here
sdfsdfsfsggbcvbg
To write a program that inputs a number and displays the digits absent in it, you can follow these steps: Convert the input number into a set of its digits. Create a set of all possible digits (0-9). Subtract the set of digits from the complete set to find the missing ones. Display the missing digits. Here’s a simple example in Python: number = input("Enter a number: ") present_digits = set(number) all_digits = set('0123456789') missing_digits = all_digits - present_digits print("Missing digits:", ''.join(missing_digits))
use whitespace and increase 0 By n+2..consider n=1 first and then follow the process with two loops.. for thecolumnand row.
To get to answer of 1 in a multiplication problem such as this you multiply the given number by it's inverse. In your example: 7069 * 1/7069 = 1
8086 assembly language program to check wether given number is perfect or not