Home » Programming Challenges » Programming Challenge 1: Product Them Programming Challenge 1: Product Them Let’s start Programming Challenges with a very simple problem. In this problem you will have to product three integer numbers. If you want any help just put your comment in the comment box ! Share: Facebook Twitter Google+ StumbleUpon Digg Delicious LinkedIn Reddit Technorati
Good job. But there is no option to select a programming language which will be used.
ReplyDeleteSorry for my mistake ! Now its correcterd ! You may give it a try !
Delete(h)
ReplyDelete#include
ReplyDeleteint main()
{
int n;
int a, b;
while (scanf("%d", &n) != EOF)
{
scanf("%d %d",&a, &b);
printf("%d", n*b*a);
}
return 0;
}
whats the problem with this code