Is there anyone who can help me with C # | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

Is there anyone who can help me with C #

Crie um programa que pergunte ao usuário dois números inicio e fim e mostre na tela uma contagem que inicia no número informado para o início e vá até o número informado como fim.

12th Apr 2017, 1:25 AM
LEANDRO MACIEL
LEANDRO MACIEL - avatar
12 Answers
+ 15
kkkk @Abner MDS! Mais outro! You guys should at least try to solve it, do your own homeworks, post your attempts and ask for help so others can help you find where you got your code wrong.
13th Apr 2017, 7:45 PM
Pao
Pao - avatar
+ 14
As pessoas não vão lhe ajudar se você coloca as instruções em português. Mais ainda elas sabem que essa é uma tarefa disfarçada 😅
12th Apr 2017, 5:19 AM
Pao
Pao - avatar
+ 13
Não, eu não sou brasileira mas eu falo português 😳 sinto muito Leandro, C# não é meu forte, mas você pode procurar brasileiros que podem lhe ajudar no seu perfil>skills>status+rank>local ou Leaderboard>local
12th Apr 2017, 5:53 AM
Pao
Pao - avatar
+ 6
no do it yourself. stop asking people to do your work for you
12th Apr 2017, 2:30 AM
Edward
+ 4
Leandro, se tu te der ao trabalho de estudar as primeiras lições de C# tu já consegue resolver isso.
13th Apr 2017, 6:19 AM
Abner Schmidt
Abner Schmidt - avatar
+ 4
É mais ou menos isso aqui: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SoloLearn { class Program { static void Main(string[] args) { Console.WriteLine("Qual é o primeiro número?"); int min = Convert.ToInt32(Console.ReadLine()); Console.WriteLine("Qual é o segundo número?"); int max = Convert.ToInt32(Console.ReadLine()); for (int x = min; x <= max; x++) { Console.WriteLine(x); } } } } Agora vê se isso te motiva a estudar.
13th Apr 2017, 6:49 AM
Abner Schmidt
Abner Schmidt - avatar
+ 4
@Paola Está complicada a situação... How can they possibly ever become software developers? Giving up before even trying is not the way.
13th Apr 2017, 8:53 PM
Abner Schmidt
Abner Schmidt - avatar
+ 3
@LEANDRO MACIEL Don't know how to play this app.....-_- what do you mean? How?
12th Apr 2017, 12:55 PM
Yanothai Chaitawat
Yanothai Chaitawat - avatar
+ 1
eu não sei mexer nesse App
12th Apr 2017, 5:54 AM
LEANDRO MACIEL
LEANDRO MACIEL - avatar
0
Why do not you help me? Why did not you help me once?
12th Apr 2017, 2:46 AM
LEANDRO MACIEL
LEANDRO MACIEL - avatar
0
vc pode mim ajuda colega uma brasileira até que fim
12th Apr 2017, 5:20 AM
LEANDRO MACIEL
LEANDRO MACIEL - avatar
- 1
 6) Read a number entered by the user and display all the previous numbers up to zero, line by line. 7) Create a program that prompts the user for the first number. Show on the screen which number was chosen and if the number is greater than 10 then show your predecessors until you reach number 10. 8) Create a program that reads a number entered by the user and shows on the screen their sum. Continue asking and adding the new number to the previous result, and showing each result after the sum on the screen. The accumulation should only stop if the user reports a negative number. 9) Create a program that prompts the user for two start and end numbers and shows on the screen a countdown that starts at the number entered for the beginning and goes to the number entered as end. 10) Create a program that reads a number entered by the user and shows on the screen its subtraction. Continue asking and subtracting the new number from the previous result, and showing each result after subtraction on the screen. The decrease should only stop when the value is zero or less. Someone else help me with this and C #
13th Apr 2017, 4:33 PM
レアンドロ マシエル
レアンドロ マシエル - avatar