Posts by glaubermlira • 53 points
4 posts
-
2
votes2
answers389
viewsQ: How to display user name initials without their connectors?
From a name entered by the user, display your initials but without your connectors. For example: josé da silva -> JS I was able to generate the code to print the initials but I’m not getting the…
-
-2
votes2
answers94
viewsQ: Check if a number is integer, if not, make the user type again
The idea is to make a program that asks the user a number, check if this number is real positive otherwise, request to type again another number, this process can repeat countless times...…
c++asked glaubermlira 53 -
0
votes1
answer37
viewsQ: Problems with arithmetic operators in C++
I’m trying to get the program to calculate the discount value of a certain value entered by the user; #include <iostream> #include <stdio.h> #include <locale.h> using namespace…
c++asked glaubermlira 53 -
0
votes2
answers47
viewsQ: I want to write a loop for...of which changes the first letter of the day, in the array, to uppercase
I have my code, I just don’t know how to finish it... const days = ['sunday', 'monday', 'tuesday', 'wednesday', 'thursday', 'friday', 'saturday']; for (day of days) { console.log(day); }…
javascriptasked glaubermlira 53