pls ans pls ans pls ans
Attachments:
Answers
Answered by
2
Answer:
* we going to make a program with programing C . At first the program asked the user for the three number. After getting the number the program will show the multiply of those three number(1st number * 2nd number * 3th number = result).*/
#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();
}
Explanation:
hope it helps u
Similar questions
English,
2 months ago
Social Sciences,
2 months ago
English,
2 months ago
Computer Science,
5 months ago
Math,
5 months ago
Math,
11 months ago
English,
11 months ago
Physics,
11 months ago