Posts by Juan Santos • 11 points
3 posts
-
0
votes0
answers172
viewsQ: Error deserving JSON: The JSON value could not be converted to System.Collections.Generic.Ienumerable
var stream = await response.Content.ReadAsStreamAsync(); var des = await JsonSerializer.DeserealizeAsync<IEnumerable<WorkingDaysDates>>(stream); [JsonProperty(PropertyName =…
-
1
votes1
answer81
viewsQ: Can’t find one string inside the other
When executing this code, and perform a test with: Entrada: analise padrão Mensagem: ana The sentence is not found inside the other. #include <stdio.h> #include <string.h> int main (){…
-
0
votes3
answers1015
viewsQ: The sum of all non-prime odd numbers that precede an integer?
Example 1 of execution: Entrada ( numero inteiro): 10 Output: 10 So far I have it: num =10; for (i = 2; i < num ; i++) { if (num % i == 1 ){ printf("%d\n", i); soma2 = i + soma2; } } But in the…
casked Juan Santos 11