Uri 1080 Solution || BEE 1080 || Beecrowd1080 Highest and Position

Uri 1080 Solution

Beecrowd1080 Highest and Position question Uri 1080 Solution || BEE 1080 ||Free Code Center Highest and Position Adapted by Neilor Tonin, URI  Brazil Timelimit: 1 Read 100 integer numbers. Print the highest read value and the input position. Input The input file contains 100 distinct positive integer numbers. Output Print the highest number read and the … Read more

Uri 1048 solution in c || Beecrowd 1048 Salary Increase solution in C,CPP

Uri 1048 solution in c

Uri 1048 Solution in c || Beecrowd 1048 Salary Increase Question #include<stdio.h> int main() { float s; scanf(“%f”,&s); if(s>0 && s<=400.0) printf(“Novo salario: %.2f\nReajuste ganho: %.2f\nEm percentual: 15 %%\n”,(s+(s*.15)),(s*.15)); else if(s<=800.0) printf(“Novo salario: %.2f\nReajuste ganho: %.2f\nEm percentual: 12 %%\n”,(s+(s*.12)),(s*.12)); else if(s<=1200.0) printf(“Novo salario: %.2f\nReajuste ganho: %.2f\nEm percentual: 10 %%\n”,(s+(s*.10)),(s*.10)); else if(s<=2000.0) printf(“Novo salario: %.2f\nReajuste ganho: … Read more