Posts by Diego Borges de Oliveira • 11 points
1 post
-
1
votes1
answer30
viewsA: with I do to print multiples of N in a range in C language, my code does not run
#include <stdio.h> int main() { int n, b, a; int x, verificador, total; total = 0; /* first value of the range */ printf("digite o primeiro numero do intervalo\n"); scanf("%d", &a);…