Jump to content
Fórum Script Brasil
  • 0

COMO?


leonardoredaelli

Question

AJUDA!!!! Como fazer este array de FLOAT em C# (CSHARP)???

1) Criar um array de "FLOAT" com 50 posições;
1.1) Atribuir dentro dum "FOR" os valores do array;
1.2) Somar numa variável "INT" todos os valores do array;
1.3) Exibir o valor de "INT" que guarda as somas.

dica: vetor = i*50
valor=valor*2;
valor*=2;
valor+=(int) vetor1;
(INT) (FLOAT)

SIGA O EXEMPLO ABAIXO :

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ProjetoAula3
{
class Program
{
static void Main(string[] args)
{
//Estrutura ARRAY
int[] vetor = new int[50];
//Atribuir valor na posicao 0
vetor[0] = 10;
Console.WriteLine("Posicao 0 do vetor: " + vetor[0]);
Console.ReadLine();
//Estrutura de repeticao FOR
for (int i = 0; i < 100; i++)
{
Console.WriteLine("Indice: " + i);
}
//Estrutura de repeticao WHILE
int dinheiro = 0;
while (true)
{
dinheiro += 100;
Console.WriteLine("O valor de dinheiro é: " + dinheiro);
if (dinheiro > 1000000)
{
break;
}
}
//Variavel FLOAT
float var2;
Console.WriteLine("Digite um valor para VAR2");
var2 = float.Parse(Console.ReadLine());
Console.WriteLine("O valor de VAR2 é: " + var2);
Console.ReadLine();
//Variavel INT
int var = 0;
Console.WriteLine("Digite um valor para VAR");
var = Int32.Parse(Console.ReadLine());
Console.WriteLine("O valor de VAR é: " + var);
Console.ReadLine();
//Variavel STRING
string nome;
Console.WriteLine("Digite um valor para NOME");
nome = Console.ReadLine();
Console.WriteLine("O valor de NOME é: " + nome);
Console.ReadLine();
}
}
}

Link to comment
Share on other sites

0 answers to this question

Recommended Posts

There have been no answers to this question yet

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...