Sherlock and Squares
Question :-
https://www.hackerrank.com/challenges/sherlock-and-squares/problem
Solution in C language :-
#include <stdio.h>
#include <string.h>
#include <math.h>
#include <stdlib.h>
int main(){
int a,b;
scanf("%d");while(scanf("%d%d",&a,&b)>0){
printf("%d\n",(int)(floor(sqrt(b))-ceil(sqrt(a))+1));}
return 0;}
Comments
Post a Comment