0
#include<stdio.h> int main(){ int a,b,c; printf(" three numbers: "); scanf("%d %d %d",&a,&b,&c); if(a>b && a>c){ printf("
show error...plz solve this
3 odpowiedzi
0
complete the code
0
int a,b,c;
printf(" three numbers: ");
scanf("%d %d %d",&a,&b,&c);
if(a>b && a>c){
printf("maximum is:%d",a);}
else if(b>c){
printf ("maximum is:%d",b);}
else{
printf ("Maximum is: %d ",c);}
if (a<b && a<c){
printf("minimum is :%d",a);}
else if (b<c){
printf("minimum is:%d",b);}
else {
printf("minimum is:%d,c);}
}
0
line no 14 :after %d. " is missing
line no 15 :extra. } is causing error