Jump to content
Fórum Script Brasil
  • 0

Chamando Função em C#


Binder

Question

Olá Pessoal, estou com uma dúvida em C#, estou iniciando na linguagem, e estou tentando criar uma função e chamá-la dentro do main, porem não estou conseguindo.

Agradeço pela atenção.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Exemplo_Livro
{
      //Função    
      public int soma_numero(int v1,int v2)
      {

        int soma;

        soma = v1 + v2;

        return soma;
      }

    class Program
    {

        static void Main(string[] args)
        {
            
            int n1,n2,resp;

            Console.WriteLine("Digite primeiro valor:");
            String aux1 = Console.ReadLine();

            Console.WriteLine("Digite segundo valor:");
            String aux2 = Console.ReadLine();

      
            n1 = Convert.ToInt32(aux1);
            n2 = Convert.ToInt32(aux2);

            resp = soma_numero(n1,n2);

            Console.WriteLine("A soma dos numeros digitados é:",soma);

         //system("pause");
         Console.ReadKey();

        }
    }
}

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

Resolvido:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Exemplo_Livro
{

    class Program
    {
        //minha classe
        public class ClasseEx3
        {

            //metodo
            public int soma(int n1,int n2)
            {

                int aux1;
                int aux2;
                int soma; 

                aux1 = n1;
                aux2 = n2;

                soma = n1 + n2;

                return soma;
            }

        }
        

        static void Main(string[] args)
        {

            ClasseEx3 minhaclasse = new ClasseEx3();


            int valor1;
            int valor2;


            Console.Write("Digite primeiro numero inteiro:");
            string aux1 = Console.ReadLine();

            Console.Write("Digite segundo numero inteiro:");
            string aux2 = Console.ReadLine();


            valor1 = Convert.ToInt32(aux1);
            valor2 = Convert.ToInt32(aux2);


            Console.Write("A soma foi:{0}", minhaclasse.soma(valor1,valor2) + Environment.NewLine);
            

            //system("pause");
            Console.ReadKey();

        }//main
    }//class program
}//namespace_Exemplo_Livro

Link to comment
Share on other sites

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...