Sagar Bhattacharya

Sagar Bhattacharya

Member

Member since

Sep 15, 2018

Last active

Sep 26, 2018

Posts contributed

1

Recent posts

  • Sagar Bhattacharya

    Sagar Bhattacharya

    @sagar-xdCxNW Oct 26, 2024

    Program for Ramanujan Numbers?

    what is wrong in the following code output:- 1729 4101 4913 {correct output 1729 4104}#include <stdio.h>int main(){int i,d=0,j,k,s=5000;for(i=1;i<=s;i++){  for(j=1;j<i;j++){      for(k=1;k<i;k++){                if((j*j*j)+(k*k*k)==i&&k>j)       d++;                   }}if(d==2)        printf("%d\n",i); ...