You are on page 1of 2

// // #include<stdio.

h>
// // int main()
// // {
// // int a;
// // printf("enter a=");
// // scanf("%d",&a);
// // if (a >10);
// // {
// // printf("No. is greater than 10");
// // }
// // printf("\n good");
// // return 0;
// // }
// // // write a programe to check the number is divisible by 5
// #include<stdio.h>
// int main()
// {
// int a=5;
// printf("enter a=");
// scanf("%d",&a);
// if(a<1)
// {
// printf("hello");

//

// write a programe to find greater number among 3 numbers.

// #include<stdio.h>

// int main()
// {
// int a,b,c;
// printf("Enter a=");
// scanf("%d",&a);
// printf("Enter b=");
// scanf("%d",&b);
// printf("Enter c=");
// scanf("%d",&c);
// if(a>b && b>c)
// {
// printf("%d is greater than %d and %d ",a,b,c);
// }
// else if(b>a && b>c)
// {
// printf("%d is greater than %d and %d ",b,a,c);
// }
// else if(c>a && c>b)
// {
// printf("%d is greater than %d and %d ",c,a,b);
// }
// return 0;
// }

/*a is a 10 b is 10 and c also 10


*/

// take % as a input if % of the user is greater than 90 grade A


#include<stdio.h>
int main(){
int percentage;
printf("Enter percentage");
scanf("%d",&percentage);
}

You might also like