Thursday 16 February 2012

Simple program of c find the largest number


Simple program of c find the largest number

#include<stdio.h>
int main(){
  int n,num,i;
  int big;
  
  printf("Enter the values of n: ");
  scanf("%d",&n);
 
  printf("Number %d",1);
  scanf("%d",&big);
  for(i=2;i<=n;i++){
    printf("Number %d: ",i);
    scanf("%d",&num);
    if(big<num)
      big=num;
  }
  
  printf("Largest number is: %d",big);
  return 0;
}

Sample Output:
Enter the values of n:
Number 1: 12
Number 2: 32
Number 3: 35
Largest number is: 35

No comments:

Post a Comment