+ 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 Antworten
+ 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 #