Posts by Breno Leonetti • 33 points
5 posts
-
-3
votes1
answer92
viewsQ: Assign Value to a variable that the user puts C#
I am learning C# (Good at the beginning of learning) and I saw that anything that the user inserts by "Console.Readline();" is considered as a string automatically by Visual Studio, but how do I…
-
0
votes1
answer43
viewsA: Program error of average in C, in result view
The corrected program is this: #include<stdio.h> #include<conio.h> int main() { float media,nota1,nota2,nota3,nota4; printf("\nEntre com as 4 notas: \n"); scanf("%f", ¬a1);…
-
0
votes1
answer43
viewsQ: Program error of average in C, in result view
I’m a beginner in C programming, and in college we had to develop a program to make the average of 4 notes, and after typed, make the display, the program works without syntax error, but there’s…
-
-2
votes2
answers873
viewsQ: Python Note Release Exercise
Hi, I’m a beginner in programming, and I have a college exercise to do, I managed to do a part, but I don’t know how to program the rest of it. It’s a three-note-release python program per student,…
pythonasked Breno Leonetti 33 -
0
votes1
answer1170
viewsQ: Visualg algorithm over prime numbers in a repeat structure
I’m new to programming and I need help in a college exercise, I need an algorithm in Visualg that shows the prime numbers between an n1 number and an N2 number, using a repetition structure, where…