Posts by Diovani Facco • 3 points
4 posts
-
-1
votes1
answer18
viewsQ: Assemble an Array of at most 10 x 10, which the user chooses the order in a function, and then assemble the matrix in another function
Write a program that reads an array (maximum 10 x 10). The order matrix is chosen by the user. Next use a function to: a) Read integer values from matrix; b) Show matrix values; However, it is…
-
-2
votes1
answer45
viewsQ: Create a C function, which searches how many times a letter appears in a string
I need to make this function count how many times a letter has been said in the string. However, the result always returns 0. #include <stdio.h> #include <string.h> void contador(char…
-
0
votes1
answer81
viewsQ: How do I switch players in this java script code?
Hello, I am creating a game, that whoever hits the number wins, but I would like to add to the player name, and each time the other player goes to play, appear for example "It is the turn of player…
javascriptasked Diovani Facco 3 -
-4
votes2
answers230
viewsQ: How can I create a Javascript function for the prompt?
How can I create a function to let the prompt be provided with the 1 and 2 codes in javascript? If it is not for either of these two continue at the same prompt. And if for continues the code ... If…