Posts by MaatheusGois • 52 points
4 posts
-
-1
votes5
answers639
viewsA: Complete number with "zeros" until the total size is 9!
how are you? I believe this is another way function completar(num) { // Transformar em String antes de interar consome muito menos processamento. let number = String(num); //Usar o while é mais…
-
1
votes1
answer75
viewsA: How to read json in html
Put your JSON in a jsonReport variable and inside the report attribute varri the elements belonging to it, for your sake it was not very clear I made an example for you can see what I am doing and…
-
0
votes1
answer33
viewsA: Error importing. csv files
You could do it that way: setwd("C:/Users/Leonardo Bergamo/Desktop") planilha = read.csv("notasMac113.csv", header = TRUE) print(planilha) You can also consult this code for more details.…
ranswered MaatheusGois 52 -
2
votes3
answers444
viewsA: Factorial from 0 to 20 using For
Hello, all right? You can do it in C as follows: #include <stdio.h> int main() { double fat; int n; printf("Insira um valor para o qual deseja calcular seu fatorial: "); scanf("%d", &n);…