URI Online Judge | 1007
Difference
Adapted by Neilor Tonin, URI Brazil
Timelimit: 1
Problem Description:
Problem Number:1007
Problem Name: Difference
Author’s Name:Neilor Tonin, URI Brazil
Timelimit: 1
Problem Category: BEGINNER.
Problem Source: https://www.urionlinejudge.com.br/judge/en/problems/view/1007
Solution in C
Read on-> কম্পিউটারে মাইক্রোফোন কাজ না করলে কি করবেন -Windows 7
#include <stdio.h>
int main()
{
int A,B,C,D,DIFERENCA;
scanf ("%d %d %d %d", &A,&B,&C,&D);
DIFERENCA=(A*B)-(C*D);
printf("DIFERENCA = %d\n", DIFERENCA);
return 0;
}
0 comments:
Post a Comment