“C Programm zur größten und kleinsten Zahl unter n” Code-Antworten

Finden Sie die größte Zahl unter fünf Zahlen in der C -Sprache

#include<stdio.h> 
 
int main() 
{ 
 int a,b,c,d,e; 
 
 printf("ENTER THE FIVE NUMBERS"); 
 scanf("%d %d %d %d %d",&a,&b,&c,&d,&e); 
 
 if(a>b && a>c &&  a>d && a>e) 
  printf("%d is largest", a); 
 
 else 
  if(b>c && b>d && b>e) 
   printf("%d is largest", b); 
 
 else 
  if(c>d && c>e) 
   printf("%d is largest", c); 
 
 else 
  if(d>e) 
   printf("%d  is largest", d); 
 
 else 
  printf("%d is largest", e); 
  
 return 0; 
}
Clear Capuchin

C Programm zur größten und kleinsten Zahl unter n

// C program to find the smallest and largest element in an array

#include<stdio.h>

int main()
{
int a[50],i,n,large,small;
printf(“\nEnter the number of elements : “);
scanf(“%d”,&n);
printf(“\nInput the array elements : “);
for(i=0;i<n;++i)
scanf(“%d”,&a[i]);

large=small=a[0];

for(i=1;i<n;++i)
{
if(a[i]>large)
large=a[i];

if(a[i]<small)
small=a[i];
}

printf(“\nThe smallest element is %d\n”,small);
printf(“\nThe largest element is %d\n”,large);

return 0;
}
Tiny Coders

Ähnliche Antworten wie “C Programm zur größten und kleinsten Zahl unter n”

Fragen ähnlich wie “C Programm zur größten und kleinsten Zahl unter n”

Weitere verwandte Antworten zu “C Programm zur größten und kleinsten Zahl unter n” auf C

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen