URI Online Judge Solution 1001- Brain Muscles URI 1001
URI Online Judge Solution 1001 ☺ Extremely Basic☺
URI Online Judge Solution 1001
Before seeing the solution make sure that you
tried enough. Don’t paste the whole code, just find out the logic. If you stuck
in trouble, just inform me on comment.
![]() |
| Add caption |
URI 1001 Extremely Basic
URI
Online Judge | 1001
Extremely Basic uri 1001
Read 2 variables, named A and B and make the sum of these two variables,
assigning its result to the variable X. Print X as shown below. Print endline
after the result otherwise you will get “Presentation Error”.
Input
The input file will contain 2 integer numbers.
Output
Print the letter X (uppercase) with a blank space before and after
the equal signal followed by the value of X, according to the following
example.
Obs.: don't forget the endline after all.
|
|
Samples Input
|
Samples Output
|
10
9
|
X = 19
|
| -10 4 |
X = -6
|
| 15 -7 |
X = 8
|
URI Solution 1001 Extremely Basic in C:
#include <stdio.h>
int main()
{
int A,B,X;
scanf("%d
%d",&A,&B);
X= A+B;
printf("X
= %d\n",X);
return 0;
}

Popular
Tags
Videos
0 comments:
Post a Comment