Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <string.h>
- #include <ctype.h>
- int main() {
- int a, b;
- scanf("%d%d", &a, &b);
- printf("Zbir: %d\n", a + b);
- printf("Razlika: %d\n", a - b);
- printf("Proizvod: %d\n", a * b);
- if(a > b) {
- printf("Pogolemiot broj e: %d\n", a);
- }
- else {
- printf("Pogolemiot broj e %d\n", b);
- }
- return 0;
- }
- /*
- */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement