warning: integer constant is too large for its typ | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

warning: integer constant is too large for its typ

help warning: integer constant is too large for its typ #include<stdio.h> #include<string.h> #include<limits.h> int main () { long long int num; int n; int divisor; scanf ("%d", &n); num = (10000 * 100000000000000000000 * 100000000000000000000 * 100000000000000000000); if (1 < n && n < (num -1)) if (n % 9 == 0) printf ("divisibilidad!"); else printf ("no es multiplo"); return 0; }

8th Nov 2019, 1:21 AM
Young Money
Young Money - avatar
0 Answers