Problem Name: 1035 Selection Test 1 code
Problem Number : URI - 1035 Selection Test 1 solution
Online Judge : URI Online Judge Solution
Category: Beginner
Solution in C
#include <stdio.h>
int main() { int a, b, c, d; scanf("%d %d %d %d", &a, &b, &c, &d);
if((b > c) && (d > a) && (c + d > a + b) && c > 0 && c > 0 && (a % 2 == 0)) printf("Valores aceitos\n"); else printf("Valores nao aceitos\n");
No comments:
Post a Comment
Thanks..