Write a program in C++ to multipky three numbers
Answers
Answered by
1
#include <stdio.h>
int main()
{
int x,y,z,result;
printf(“Enter the 1st number: “);
scanf(“%d”,&x);
printf(“Enter the 2nd number: “);
scanf(“%d”,&y);
printf(“Enter the 3th number: “);
scanf(“%d”,&z);
result = x * y * z;
printf(“result=%d”,result);
retrun 0;
getch();
}
Anonymous:
Thanks:))
Similar questions
English,
7 months ago
Social Sciences,
7 months ago
Math,
1 year ago
CBSE BOARD XII,
1 year ago
Math,
1 year ago
Hindi,
1 year ago