Home > Back-end >  Please bosses to help me check my code wrong, mentality collapse
Please bosses to help me check my code wrong, mentality collapse

Time:09-22

CodePudding user response:

# include "stdio.h"
# include "stdlib. H"
# include "string. H"
# include "ctype. H"
# include "malloc. H"
Int main ()
{
Int n, x, j, k, l, m;
For (n=5;; N++)
{
J=4 * (n - 1)/5;
K=4 * (j - 1)/5;
L=4 * (k - 1)/5;
M=4 * (l - 1)/5;
If (n % 5==1 & amp; & J % 5==1 & amp; & K % 5==1 & amp; & L % 5==1 & amp; & M % 5==1)
{
Printf (" partnership fishing at least: % d \ n ", n);
break;
}
}
return 0;
}
  • Related