+ 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.
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.
+ 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 đ
+ 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
+ 6
no do it yourself. stop asking people to do your work for you
+ 4
Leandro, se tu te der ao trabalho de estudar as primeiras liçÔes de C# tu jå consegue resolver isso.
+ 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.
+ 4
@Paola Estå complicada a situação...
How can they possibly ever become software developers? Giving up before even trying is not the way.
+ 3
@LEANDRO MACIEL
Don't know how to play this app.....-_- what do you mean?
How?
+ 1
eu nĂŁo sei mexer nesse App
0
Why do not you help me? Why did not you help me once?
0
vc pode mim ajuda colega uma brasileira até que fim
- 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 #