Napisz program który dodaje odejmuje itd np 2+2
SUMA = 4
2-2
SUMA= 0
Autor napisał na PW że chodzi o język C .
#include <stdio.h>#include <stdlib.h> using namespace std;int main(){ int a=0,b=0; printf("Podaj a i b: "); scanf("%d",&a); scanf("%d",&b); printf("%d + %d = %d", a, b, a+b); printf("\n%d - %d = %d", a, b, a-b); printf("\n%d * %d = %d", a, b, a*b); //itd printf("\n"); system("PAUSE"); return 0; }
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
Autor napisał na PW że chodzi o język C .
#include <stdio.h>
#include <stdlib.h>
using namespace std;
int main(){
int a=0,b=0;
printf("Podaj a i b: ");
scanf("%d",&a);
scanf("%d",&b);
printf("%d + %d = %d", a, b, a+b);
printf("\n%d - %d = %d", a, b, a-b);
printf("\n%d * %d = %d", a, b, a*b); //itd
printf("\n");
system("PAUSE");
return 0;
}