Buscar

AULA LP 14062016

Esta é uma pré-visualização de arquivo. Entre para ver o arquivo original

lp.rar
 
lp/Calculadora/ConsoleApplication1/ConsoleApplication1/App.config
 
 
 
 
lp/Calculadora/ConsoleApplication1/ConsoleApplication1/bin/Debug/ConsoleApplication1.exe
lp/Calculadora/ConsoleApplication1/ConsoleApplication1/bin/Debug/ConsoleApplication1.exe.config
 
 
 
 
lp/Calculadora/ConsoleApplication1/ConsoleApplication1/bin/Debug/ConsoleApplication1.pdb
lp/Calculadora/ConsoleApplication1/ConsoleApplication1/bin/Debug/ConsoleApplication1.vshost.exe
lp/Calculadora/ConsoleApplication1/ConsoleApplication1/bin/Debug/ConsoleApplication1.vshost.exe.config
 
 
 
 
lp/Calculadora/ConsoleApplication1/ConsoleApplication1/bin/Debug/ConsoleApplication1.vshost.exe.manifest
 
 
 
 
 
 
 
 
 
lp/Calculadora/ConsoleApplication1/ConsoleApplication1/ConsoleApplication1.csproj
 
 
 
 Debug
 AnyCPU
 {099FBC3A-0882-4A50-B6A6-0F58E7594E6C}
 Exe
 Properties
 ConsoleApplication1
 ConsoleApplication1
 v4.5
 512
 
 
 AnyCPU
 true
 full
 false
 bin\Debug\
 DEBUG;TRACE
 prompt
 4
 
 
 AnyCPU
 pdbonly
 true
 bin\Release\
 TRACE
 prompt
 4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
lp/Calculadora/ConsoleApplication1/ConsoleApplication1/obj/Debug/ConsoleApplication1.csproj.FileListAbsolute.txt
C:\Users\Programacao\Desktop\lp\Calculadora\ConsoleApplication1\ConsoleApplication1\bin\Debug\ConsoleApplication1.exe.config
C:\Users\Programacao\Desktop\lp\Calculadora\ConsoleApplication1\ConsoleApplication1\bin\Debug\ConsoleApplication1.exe
C:\Users\Programacao\Desktop\lp\Calculadora\ConsoleApplication1\ConsoleApplication1\bin\Debug\ConsoleApplication1.pdb
C:\Users\Programacao\Desktop\lp\Calculadora\ConsoleApplication1\ConsoleApplication1\obj\Debug\ConsoleApplication1.exe
C:\Users\Programacao\Desktop\lp\Calculadora\ConsoleApplication1\ConsoleApplication1\obj\Debug\ConsoleApplication1.pdb
lp/Calculadora/ConsoleApplication1/ConsoleApplication1/obj/Debug/ConsoleApplication1.exe
lp/Calculadora/ConsoleApplication1/ConsoleApplication1/obj/Debug/ConsoleApplication1.pdb
lp/Calculadora/ConsoleApplication1/ConsoleApplication1/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
lp/Calculadora/ConsoleApplication1/ConsoleApplication1/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
lp/Calculadora/ConsoleApplication1/ConsoleApplication1/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
lp/Calculadora/ConsoleApplication1/ConsoleApplication1/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
lp/Calculadora/ConsoleApplication1/ConsoleApplication1/Program.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication1
{
 class Program
 {
 static void Main(string[] args)
 {
 char op;
 int som1, som2, t_som;
 Console.WriteLine("---------------------#---------------------");
 Console.WriteLine("----------------CALCULADORA----------------");
 Console.WriteLine("---------------------#---------------------");
 Console.WriteLine(" ");
 Console.WriteLine(" Escolha o tipo de operação: ");
 Console.WriteLine("Soma --------------------------------- 1");
 Console.WriteLine("Subtração ---------------------------- 2");
 Console.WriteLine("Divisão ------------------------------ 3");
 Console.WriteLine("Multiplicação------------------------- 4");
 op = char.Parse(Console.ReadLine());
 if(op == '1')
 {
 Console.WriteLine("Operação selecionada: SOMA");
 Console.WriteLine("Digite o primeiro numero: ");
 som1 = int.Parse(Console.ReadLine());
 Console.WriteLine("Digite o segundo numero: ");
 som2 = int.Parse(Console.ReadLine());
 t_som = som1 + som2;
 Console.WriteLine("A soma de "+som1+"+"+som2+"="+t_som);
 }
 else
 {
 }
 Console.ReadKey();
 }
 }
}
lp/Calculadora/ConsoleApplication1/ConsoleApplication1/Properties/AssemblyInfo.cs
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following 
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("ConsoleApplication1")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Microsoft")]
[assembly: AssemblyProduct("ConsoleApplication1")]
[assembly: AssemblyCopyright("Copyright © Microsoft 2016")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// Setting ComVisible to false makes the types in this assembly not visible 
// to COM components. If you need to access a type in this assembly from 
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]
// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("b384829a-746c-456b-9190-67cea6a126af")]
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version 
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers 
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
lp/Calculadora/ConsoleApplication1/ConsoleApplication1.sln
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2013
VisualStudioVersion = 12.0.30723.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ConsoleApplication1", "ConsoleApplication1\ConsoleApplication1.csproj", "{099FBC3A-0882-4A50-B6A6-0F58E7594E6C}"
EndProject
Global
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|Any CPU = Debug|Any CPU
		Release|Any CPU = Release|Any CPU
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{099FBC3A-0882-4A50-B6A6-0F58E7594E6C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{099FBC3A-0882-4A50-B6A6-0F58E7594E6C}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{099FBC3A-0882-4A50-B6A6-0F58E7594E6C}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{099FBC3A-0882-4A50-B6A6-0F58E7594E6C}.Release|Any CPU.Build.0 = Release|Any CPU
	EndGlobalSection
	GlobalSection(SolutionProperties) = preSolution
		HideSolutionNode = FALSE
	EndGlobalSection
EndGlobal
lp/Calculadora/ConsoleApplication1/ConsoleApplication1.v12.suo
lp/divisao/divisao/App.config
 
 
 
 
lp/divisao/divisao/bin/Debug/divisao.exe
lp/divisao/divisao/bin/Debug/divisao.exe.config
 
 
 
 
lp/divisao/divisao/bin/Debug/divisao.pdb
lp/divisao/divisao/bin/Debug/divisao.vshost.exe
lp/divisao/divisao/bin/Debug/divisao.vshost.exe.config
 
 
 
 
lp/divisao/divisao/bin/Debug/divisao.vshost.exe.manifest
 
 
 
 
 
 
 
 
 
lp/divisao/divisao/divisao.csproj
 
 
 
 Debug
 AnyCPU
 {B882F97D-CD2D-4300-BB22-AAC791F17B9E}
 Exe
 Properties
 divisao
 divisao
 v4.5
 512
 
 
 AnyCPU
 true
 full
 false
 bin\Debug\
 DEBUG;TRACE
 prompt
 4
 
 
 AnyCPU
 pdbonly
 true
 bin\Release\
 TRACE
 prompt
 4
lp/divisao/divisao/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
lp/divisao/divisao/obj/Debug/divisao.csproj.FileListAbsolute.txt
C:\1Tipin\divisao\divisao\bin\Debug\divisao.exe.config
C:\1Tipin\divisao\divisao\bin\Debug\divisao.exe
C:\1Tipin\divisao\divisao\bin\Debug\divisao.pdb
C:\1Tipin\divisao\divisao\obj\Debug\divisao.exe
C:\1Tipin\divisao\divisao\obj\Debug\divisao.pdb
C:\Users\Programacao\Desktop\lp\divisao\divisao\bin\Debug\divisao.exe.config
C:\Users\Programacao\Desktop\lp\divisao\divisao\obj\Debug\divisao.exe
C:\Users\Programacao\Desktop\lp\divisao\divisao\obj\Debug\divisao.pdb
C:\Users\Programacao\Desktop\lp\divisao\divisao\bin\Debug\divisao.exe
C:\Users\Programacao\Desktop\lp\divisao\divisao\bin\Debug\divisao.pdb
lp/divisao/divisao/obj/Debug/divisao.exe
lp/divisao/divisao/obj/Debug/divisao.pdb
lp/divisao/divisao/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
lp/divisao/divisao/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
lp/divisao/divisao/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
lp/divisao/divisao/Program.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace divisao
{
 class Program
 {
 static void Main(string[] args)
 {
 int n1, n2, divisao;
 Console.WriteLine("programa para dividir 2 números");
 Console.WriteLine(" digite o 1º número");
 n1 = int.Parse(Console.ReadLine());
 Console.WriteLine("digite o 2º número");
 n2 = int.Parse(Console.ReadLine());
 divisao = n1 / n2;
 Console.WriteLine("a divisão de " + n1 + "/" + n2 + "=" + divisao);
 Console.ReadKey();
 }
 }
}
lp/divisao/divisao/Properties/AssemblyInfo.cs
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following 
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("divisao")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Microsoft")]
[assembly: AssemblyProduct("divisao")]
[assembly: AssemblyCopyright("Copyright © Microsoft 2016")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// Setting ComVisible to false makes the types in this assembly not visible 
// to COM components. If you need to access a type in this assembly from 
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]
// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("daa69ac4-678a-4234-bb5c-cd6ce2562c90")]
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version 
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers 
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
lp/divisao/divisao.sln
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2013
VisualStudioVersion = 12.0.30723.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "divisao", "divisao\divisao.csproj", "{B882F97D-CD2D-4300-BB22-AAC791F17B9E}"
EndProject
Global
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|Any CPU = Debug|Any CPU
		Release|Any CPU = Release|Any CPU
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{B882F97D-CD2D-4300-BB22-AAC791F17B9E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{B882F97D-CD2D-4300-BB22-AAC791F17B9E}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{B882F97D-CD2D-4300-BB22-AAC791F17B9E}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{B882F97D-CD2D-4300-BB22-AAC791F17B9E}.Release|Any CPU.Build.0 = Release|Any CPU
	EndGlobalSection
	GlobalSection(SolutionProperties) = preSolution
		HideSolutionNode = FALSE
	EndGlobalSection
EndGlobal
lp/divisao/divisao.v12.suo
lp/equação/Equação/Equação/App.config
 
 
 
 
lp/equação/Equação/Equação/bin/Debug/Equação.exe
lp/equação/Equação/Equação/bin/Debug/Equação.exe.config
 
 
 
 
lp/equação/Equação/Equação/bin/Debug/Equação.pdb
lp/equação/Equação/Equação/bin/Debug/Equação.vshost.exe
lp/equação/Equação/Equação/bin/Debug/Equação.vshost.exe.config
 
 
 
 
lp/equação/Equação/Equação/bin/Debug/Equação.vshost.exe.manifest
 
 
 
 
 
 
 
 
 
lp/equação/Equação/Equação/Equação.csproj
 
 
 
 Debug
 AnyCPU
 {2B56F2F2-6262-44A5-8373-AC73036CFDA8}
 Exe
 Properties
 Equação
 Equação
 v4.5
 512
 
 
 AnyCPU
 true
 full
 false
 bin\Debug\
 DEBUG;TRACE
 prompt
 4
 
 
 AnyCPU
 pdbonly
 true
 bin\Release\
 TRACE
 prompt
 4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
lp/equação/Equação/Equação/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
lp/equação/Equação/Equação/obj/Debug/Equação.csproj.FileListAbsolute.txt
F:\JONATHAN\lp\equação\Equação\Equação\bin\Debug\Equação.exe.config
C:\Users\Programacao\Desktop\lp\equação\Equação\Equação\bin\Debug\Equação.exe.config
C:\Users\Programacao\Desktop\lp\equação\Equação\Equação\bin\Debug\Equação.exe
C:\Users\Programacao\Desktop\lp\equação\Equação\Equação\bin\Debug\Equação.pdb
C:\Users\Programacao\Desktop\lp\equação\Equação\Equação\obj\Debug\Equação.exe
C:\Users\Programacao\Desktop\lp\equação\Equação\Equação\obj\Debug\Equação.pdb
C:\Users\Programacao\Desktop\lp\equação\Equação\Equação\obj\Debug\Equação.csprojResolveAssemblyReference.cache
lp/equação/Equação/Equação/obj/Debug/Equação.csprojResolveAssemblyReference.cache
lp/equação/Equação/Equação/obj/Debug/Equação.exe
lp/equação/Equação/Equação/obj/Debug/Equação.pdb
lp/equação/Equação/Equação/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
lp/equação/Equação/Equação/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
lp/equação/Equação/Equação/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
lp/equação/Equação/Equação/Program.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Equação
{
 class Program
 {
 static void Main(string[] args)
 {
 double a, b, c, x1, x2, delta;
 char resp;
 do{
 resp = 'S';
 while (resp == 'S' || resp == 's')
 {
 Console.Title = "Equação do segundo Grau";
 Console.WriteLine("Programa de Equação do 2º Grau");
 Console.WriteLine("Digite o valor de a: ");
 a = double.Parse(Console.ReadLine());
 Console.WriteLine("Digite o valor de b: ");
 b = double.Parse(Console.ReadLine());
 Console.WriteLine("Digite o valor de c: ");
 c = double.Parse(Console.ReadLine());
 delta = Math.Pow(b, 2) - (4 * a * c);
 if (delta < 0)
 {
 Console.WriteLine("Impossivel continuar, valor de Delta é negativo.");
 }
 else
 {
 x1 = ((-b) + (Math.Sqrt(delta))) / (2 * a);
 x2 = ((-b) - (Math.Sqrt(delta))) / (2 * a);
Console.WriteLine("x1 = " + x1 + " | x2 = " + x2);
 }
 Console.WriteLine("Deseja continuar? (S/N)");
 resp = char.Parse(Console.ReadLine());
 };
 }while (resp == 'S' || resp == 's');
 }
 }
}
lp/equação/Equação/Equação/Properties/AssemblyInfo.cs
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following 
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Equação")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Microsoft")]
[assembly: AssemblyProduct("Equação")]
[assembly: AssemblyCopyright("Copyright © Microsoft 2016")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// Setting ComVisible to false makes the types in this assembly not visible 
// to COM components. If you need to access a type in this assembly from 
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]
// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("79d02305-a800-4c0b-8e53-57414b0fc086")]
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version 
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers 
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
lp/equação/Equação/Equação.sln
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2013
VisualStudioVersion = 12.0.30723.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Equação", "Equação\Equação.csproj", "{2B56F2F2-6262-44A5-8373-AC73036CFDA8}"
EndProject
Global
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|Any CPU = Debug|Any CPU
		Release|Any CPU = Release|Any CPU
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{2B56F2F2-6262-44A5-8373-AC73036CFDA8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{2B56F2F2-6262-44A5-8373-AC73036CFDA8}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{2B56F2F2-6262-44A5-8373-AC73036CFDA8}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{2B56F2F2-6262-44A5-8373-AC73036CFDA8}.Release|Any CPU.Build.0 = Release|Any CPU
	EndGlobalSection
	GlobalSection(SolutionProperties) = preSolution
		HideSolutionNode = FALSE
	EndGlobalSection
EndGlobal
lp/equação/Equação/Equação.v12.suo
lp/hipotenusa/hipotenusa/App.config
 
 
 
 
lp/hipotenusa/hipotenusa/bin/Debug/hipotenusa.exe
lp/hipotenusa/hipotenusa/bin/Debug/hipotenusa.exe.config
 
 
 
 
lp/hipotenusa/hipotenusa/bin/Debug/hipotenusa.pdb
lp/hipotenusa/hipotenusa/bin/Debug/hipotenusa.vshost.exe
lp/hipotenusa/hipotenusa/bin/Debug/hipotenusa.vshost.exe.config
 
 
 
 
lp/hipotenusa/hipotenusa/bin/Debug/hipotenusa.vshost.exe.manifest
 
 
 
 
 
 
 
 
 
lp/hipotenusa/hipotenusa/hipotenusa.csproj
 
 
 
 Debug
 AnyCPU
 {C1238BB5-6EC8-46F3-82F2-402B1EB15EBE}
 Exe
 Properties
 hipotenusa
 hipotenusa
 v4.5
 512
 
 
 AnyCPU
 true
 full
 false
 bin\Debug\
 DEBUG;TRACE
 prompt
 4
 
 
 AnyCPU
 pdbonly
 true
 bin\Release\
 TRACE
 prompt
 4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
lp/hipotenusa/hipotenusa/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
lp/hipotenusa/hipotenusa/obj/Debug/hipotenusa.csproj.FileListAbsolute.txt
F:\JONATHAN\lp\media\hipotenusa\hipotenusa\bin\Debug\hipotenusa.exe.config
F:\JONATHAN\lp\media\hipotenusa\hipotenusa\bin\Debug\hipotenusa.exe
F:\JONATHAN\lp\media\hipotenusa\hipotenusa\bin\Debug\hipotenusa.pdb
F:\JONATHAN\lp\media\hipotenusa\hipotenusa\obj\Debug\hipotenusa.exe
F:\JONATHAN\lp\media\hipotenusa\hipotenusa\obj\Debug\hipotenusa.pdb
F:\JONATHAN\lp\media\hipotenusa\hipotenusa\obj\Debug\hipotenusa.csprojResolveAssemblyReference.cache
C:\Users\Programacao\Desktop\lp\hipotenusa\hipotenusa\bin\Debug\hipotenusa.exe.config
C:\Users\Programacao\Desktop\lp\hipotenusa\hipotenusa\obj\Debug\hipotenusa.exe
C:\Users\Programacao\Desktop\lp\hipotenusa\hipotenusa\obj\Debug\hipotenusa.pdb
C:\Users\Programacao\Desktop\lp\hipotenusa\hipotenusa\bin\Debug\hipotenusa.exe
C:\Users\Programacao\Desktop\lp\hipotenusa\hipotenusa\bin\Debug\hipotenusa.pdb
C:\Users\Programacao\Desktop\lp\hipotenusa\hipotenusa\obj\Debug\hipotenusa.csprojResolveAssemblyReference.cache
lp/hipotenusa/hipotenusa/obj/Debug/hipotenusa.csprojResolveAssemblyReference.cache
lp/hipotenusa/hipotenusa/obj/Debug/hipotenusa.exe
lp/hipotenusa/hipotenusa/obj/Debug/hipotenusa.pdb
lp/hipotenusa/hipotenusa/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
lp/hipotenusa/hipotenusa/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
lp/hipotenusa/hipotenusa/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
lp/hipotenusa/hipotenusa/Program.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace hipotenusa
{
 class Program
 {
 static void Main(string[] args)
 {
 Double exp=2, cat1, cat2, result, hip;
 Char resp;
 do{
 resp = 'S';
 while (resp == 'S' || resp == 's')
 {
 Console.Title = "Hipotenusa";
 Console.WriteLine("Digite o primeiro cateto: ");
 cat1 = Convert.ToDouble(Console.ReadLine());
 Console.WriteLine("Digite o segundo cateto: ");
 cat2 = Convert.ToDouble(Console.ReadLine());
 result = Math.Pow(cat1, exp) + Math.Pow(cat2, exp);
 hip = Math.Sqrt(result);
 Console.WriteLine("A hipotenusa dos números é: " + hip);
 Console.WriteLine("Deseja continuar? (S/N)");
 resp = char.Parse(Console.ReadLine());
 };
 
 } while (resp == 'S' || resp == 's');
 }
 }
}
lp/hipotenusa/hipotenusa/Properties/AssemblyInfo.cs
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following 
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("hipotenusa")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Microsoft")]
[assembly: AssemblyProduct("hipotenusa")]
[assembly: AssemblyCopyright("Copyright © Microsoft 2016")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// Setting ComVisible to false makes the types in this assembly not visible 
// to COM components. If you need to access a type in this assembly from 
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]
// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("80e6369e-79fd-4884-9c25-63002f9cc0a9")]
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version 
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision
Numbers 
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
lp/hipotenusa/hipotenusa.sln
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2013
VisualStudioVersion = 12.0.30723.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "hipotenusa", "hipotenusa\hipotenusa.csproj", "{C1238BB5-6EC8-46F3-82F2-402B1EB15EBE}"
EndProject
Global
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|Any CPU = Debug|Any CPU
		Release|Any CPU = Release|Any CPU
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{C1238BB5-6EC8-46F3-82F2-402B1EB15EBE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{C1238BB5-6EC8-46F3-82F2-402B1EB15EBE}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{C1238BB5-6EC8-46F3-82F2-402B1EB15EBE}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{C1238BB5-6EC8-46F3-82F2-402B1EB15EBE}.Release|Any CPU.Build.0 = Release|Any CPU
	EndGlobalSection
	GlobalSection(SolutionProperties) = preSolution
		HideSolutionNode = FALSE
	EndGlobalSection
EndGlobal
lp/hipotenusa/hipotenusa.v12.suo
lp/IRRF/ConsoleApplication1/ConsoleApplication1/App.config
 
 
 
 
lp/IRRF/ConsoleApplication1/ConsoleApplication1/bin/Debug/ConsoleApplication1.exe
lp/IRRF/ConsoleApplication1/ConsoleApplication1/bin/Debug/ConsoleApplication1.exe.config
 
 
 
 
lp/IRRF/ConsoleApplication1/ConsoleApplication1/bin/Debug/ConsoleApplication1.pdb
lp/IRRF/ConsoleApplication1/ConsoleApplication1/bin/Debug/ConsoleApplication1.vshost.exe
lp/IRRF/ConsoleApplication1/ConsoleApplication1/bin/Debug/ConsoleApplication1.vshost.exe.config
 
 
 
 
lp/IRRF/ConsoleApplication1/ConsoleApplication1/bin/Debug/ConsoleApplication1.vshost.exe.manifest
 
 
 
 
 
 
 
 
 
lp/IRRF/ConsoleApplication1/ConsoleApplication1/ConsoleApplication1.csproj
 
 
 
 Debug
 AnyCPU
 {97467479-CAFD-4711-A9D2-81D9FFE28611}
 Exe
 Properties
 ConsoleApplication1
 ConsoleApplication1
 v4.5
 512
 
 
 AnyCPU
 true
 full
 false
 bin\Debug\
 DEBUG;TRACE
 prompt
 4
 
 
 AnyCPU
 pdbonly
 true
 bin\Release\
 TRACE
 prompt
 4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
lp/IRRF/ConsoleApplication1/ConsoleApplication1/obj/Debug/ConsoleApplication1.csproj.FileListAbsolute.txt
C:\Users\Programacao\Desktop\lp\IRRF\ConsoleApplication1\ConsoleApplication1\bin\Debug\ConsoleApplication1.exe.config
C:\Users\Programacao\Desktop\lp\IRRF\ConsoleApplication1\ConsoleApplication1\bin\Debug\ConsoleApplication1.exe
C:\Users\Programacao\Desktop\lp\IRRF\ConsoleApplication1\ConsoleApplication1\bin\Debug\ConsoleApplication1.pdb
C:\Users\Programacao\Desktop\lp\IRRF\ConsoleApplication1\ConsoleApplication1\obj\Debug\ConsoleApplication1.csprojResolveAssemblyReference.cache
C:\Users\Programacao\Desktop\lp\IRRF\ConsoleApplication1\ConsoleApplication1\obj\Debug\ConsoleApplication1.exe
C:\Users\Programacao\Desktop\lp\IRRF\ConsoleApplication1\ConsoleApplication1\obj\Debug\ConsoleApplication1.pdb
lp/IRRF/ConsoleApplication1/ConsoleApplication1/obj/Debug/ConsoleApplication1.csprojResolveAssemblyReference.cache
lp/IRRF/ConsoleApplication1/ConsoleApplication1/obj/Debug/ConsoleApplication1.exe
lp/IRRF/ConsoleApplication1/ConsoleApplication1/obj/Debug/ConsoleApplication1.pdb
lp/IRRF/ConsoleApplication1/ConsoleApplication1/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
lp/IRRF/ConsoleApplication1/ConsoleApplication1/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
lp/IRRF/ConsoleApplication1/ConsoleApplication1/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
lp/IRRF/ConsoleApplication1/ConsoleApplication1/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
lp/IRRF/ConsoleApplication1/ConsoleApplication1/Program.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace media
{
 class Program
 {
 static void Main(string[] args)
 {
 double sal, inss, baseIR, dep;
 char resp;
 do
 {
 resp = 'S';
 while(resp == 'S' || resp == 's')
 { 
 Console.Title = "IRRF";
 Console.WriteLine("Digite o valor do salário: ");
 sal = float.Parse(Console.ReadLine());
 Console.WriteLine("Digite o valor do INSS: ");
 inss = float.Parse(Console.ReadLine());
 Console.WriteLine("Digite a quantidade de dependentes: ");
 dep = float.Parse(Console.ReadLine());
 baseIR = sal - inss;
 if (sal <= 1903.98)
 {
 baseIR = ((sal - 0) - (dep * 0)) * 0;
 }
 else
 {
 if((sal > 1903.98) || (sal<= 2825.66))
 {
 baseIR = ((sal - 142.80) - (dep * 189.59)) * 0.075;
 }
 else
 {
 if((sal>2825.66) || (sal<=3751.05)) 
 {
 baseIR = ((sal - 354.80) - (dep * 189.59)) * 0.015;
 }
 else
 {
 if ((sal>3751.06) || (sal <= 4664.69))
 {
 baseIR = ((sal - 636.13) - (dep * 189.59)) * 0.0225;
 }
 else
 {
 baseIR = ((sal - 868.36) - (dep * 189.59)) * 0.0275; 
 }
 }
 }
 }
 Console.WriteLine("O valor do IR é: " + baseIR);
 Console.WriteLine("Deseja continuar? (S/N)");
 resp = char.Parse(Console.ReadLine());
 };
 } while (resp == 'S' || resp == 's'); 
 } 
 }
 }
lp/IRRF/ConsoleApplication1/ConsoleApplication1/Properties/AssemblyInfo.cs
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following 
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("ConsoleApplication1")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Microsoft")]
[assembly: AssemblyProduct("ConsoleApplication1")]
[assembly: AssemblyCopyright("Copyright © Microsoft 2016")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// Setting ComVisible to false makes the types in this assembly not visible 
// to COM components. If you need to access a type in this assembly from 
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]
// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("7de12f1f-be5a-4a61-b918-6f55d536558b")]
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version 
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers 
// by using the '*' as shown
below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
lp/IRRF/ConsoleApplication1/ConsoleApplication1.sln
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2013
VisualStudioVersion = 12.0.30723.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ConsoleApplication1", "ConsoleApplication1\ConsoleApplication1.csproj", "{97467479-CAFD-4711-A9D2-81D9FFE28611}"
EndProject
Global
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|Any CPU = Debug|Any CPU
		Release|Any CPU = Release|Any CPU
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{97467479-CAFD-4711-A9D2-81D9FFE28611}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{97467479-CAFD-4711-A9D2-81D9FFE28611}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{97467479-CAFD-4711-A9D2-81D9FFE28611}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{97467479-CAFD-4711-A9D2-81D9FFE28611}.Release|Any CPU.Build.0 = Release|Any CPU
	EndGlobalSection
	GlobalSection(SolutionProperties) = preSolution
		HideSolutionNode = FALSE
	EndGlobalSection
EndGlobal
lp/IRRF/ConsoleApplication1/ConsoleApplication1.v12.suo
lp/media/media/media/App.config
 
 
 
 
lp/media/media/media/bin/Debug/media.exe
lp/media/media/media/bin/Debug/media.exe.config
 
 
 
 
lp/media/media/media/bin/Debug/media.pdb
lp/media/media/media/bin/Debug/media.vshost.exe
lp/media/media/media/bin/Debug/media.vshost.exe.config
 
 
 
 
lp/media/media/media/bin/Debug/media.vshost.exe.manifest
 
 
 
 
 
 
 
 
 
lp/media/media/media/media.csproj
 
 
 
 Debug
 AnyCPU
 {4B5DC479-9BD2-4CE1-A1B6-4E1D475D1ACD}
 Exe
 Properties
 media
 media
 v4.5
 512
 
 
 AnyCPU
 true
 full
 false
 bin\Debug\
 DEBUG;TRACE
 prompt
 4
 
 
 AnyCPU
 pdbonly
 true
 bin\Release\
 TRACE
 prompt
 4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
lp/media/media/media/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
lp/media/media/media/obj/Debug/media.csproj.FileListAbsolute.txt
F:\JONATHAN\lp\media\media\media\bin\Debug\media.exe.config
F:\JONATHAN\lp\media\media\media\obj\Debug\media.csprojResolveAssemblyReference.cache
F:\JONATHAN\lp\media\media\media\bin\Debug\media.exe
F:\JONATHAN\lp\media\media\media\bin\Debug\media.pdb
F:\JONATHAN\lp\media\media\media\obj\Debug\media.exe
F:\JONATHAN\lp\media\media\media\obj\Debug\media.pdb
C:\Users\Programacao\Desktop\lp\media\media\media\bin\Debug\media.exe.config
C:\Users\Programacao\Desktop\lp\media\media\media\obj\Debug\media.exe
C:\Users\Programacao\Desktop\lp\media\media\media\obj\Debug\media.pdb
C:\Users\Programacao\Desktop\lp\media\media\media\bin\Debug\media.exe
C:\Users\Programacao\Desktop\lp\media\media\media\bin\Debug\media.pdb
C:\Users\Programacao\Desktop\lp\media\media\media\obj\Debug\media.csprojResolveAssemblyReference.cache
lp/media/media/media/obj/Debug/media.csprojResolveAssemblyReference.cache
lp/media/media/media/obj/Debug/media.exe
lp/media/media/media/obj/Debug/media.pdb
lp/media/media/media/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
lp/media/media/media/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
lp/media/media/media/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
lp/media/media/media/Program.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace media
{
 class Program
 {
 static void Main(string[] args)
 {
 float n1, n2,n3,n4 ,media;
 char resp;
 do{
 resp = 'S';
 while (resp == 'S' || resp == 's')
 {
 Console.Title = "media";
 Console.WriteLine("Digite um número: ");
 n1 = float.Parse(Console.ReadLine());
 Console.WriteLine("Digite outro número: ");
 n2 = float.Parse(Console.ReadLine());
 Console.WriteLine("Digite outro número: ");
 n3 = float.Parse(Console.ReadLine());
 Console.WriteLine("Digite outro número: ");
 n4 = float.Parse(Console.ReadLine());
 media = (n1 + n2 + n3 + n4) / 4;
 Console.WriteLine("A media dos números é: " + media);
 Console.WriteLine("Deseja continuar? (S/N)");
 resp = char.Parse(Console.ReadLine());
 }; 
 } while (resp == 'S' || resp == 's');
 }
 }
}
lp/media/media/media/Properties/AssemblyInfo.cs
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following 
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("media")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Microsoft")]
[assembly: AssemblyProduct("media")]
[assembly: AssemblyCopyright("Copyright © Microsoft 2016")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// Setting ComVisible to false makes the types in this assembly not visible 
// to COM components. If you need to access a type in this assembly from 
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]
// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("28d3aafa-8a08-4f84-afaa-c55e08673251")]
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version 
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers 
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
lp/media/media/media.sln
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2013
VisualStudioVersion = 12.0.30723.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "media", "media\media.csproj", "{4B5DC479-9BD2-4CE1-A1B6-4E1D475D1ACD}"
EndProject
Global
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|Any CPU = Debug|Any CPU
		Release|Any CPU = Release|Any CPU
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{4B5DC479-9BD2-4CE1-A1B6-4E1D475D1ACD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{4B5DC479-9BD2-4CE1-A1B6-4E1D475D1ACD}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{4B5DC479-9BD2-4CE1-A1B6-4E1D475D1ACD}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{4B5DC479-9BD2-4CE1-A1B6-4E1D475D1ACD}.Release|Any CPU.Build.0 = Release|Any CPU
	EndGlobalSection
	GlobalSection(SolutionProperties) = preSolution
		HideSolutionNode = FALSE
	EndGlobalSection
EndGlobal
lp/media/media/media.v12.suo
lp/multiplicação/multiplicação/App.config
 
 
 
 
lp/multiplicação/multiplicação/bin/Debug/multiplicação.exe
lp/multiplicação/multiplicação/bin/Debug/multiplicação.exe.config
 
 
 
 
lp/multiplicação/multiplicação/bin/Debug/multiplicação.pdb
lp/multiplicação/multiplicação/bin/Debug/multiplicação.vshost.exe
lp/multiplicação/multiplicação/bin/Debug/multiplicação.vshost.exe.config
 
 
 
 
lp/multiplicação/multiplicação/bin/Debug/multiplicação.vshost.exe.manifest
lp/multiplicação/multiplicação/multiplicação.csproj
 
 
 
 Debug
 AnyCPU
 {27383982-FE24-4CAD-BF82-330A28A6997A}
 Exe
 Properties
 multiplicação
 multiplicação
 v4.5
 512
 
 
 AnyCPU
 true
 full
 false
 bin\Debug\
 DEBUG;TRACE
 prompt
 4
 
 
 AnyCPU
 pdbonly
 true
 bin\Release\
 TRACE
 prompt
 4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
lp/multiplicação/multiplicação/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
lp/multiplicação/multiplicação/obj/Debug/multiplicação.csproj.FileListAbsolute.txt
C:\1Tipin\multiplicação\multiplicação\bin\Debug\multiplicação.exe.config
C:\1Tipin\multiplicação\multiplicação\bin\Debug\multiplicação.exe
C:\1Tipin\multiplicação\multiplicação\bin\Debug\multiplicação.pdb
C:\1Tipin\multiplicação\multiplicação\obj\Debug\multiplicação.exe
C:\1Tipin\multiplicação\multiplicação\obj\Debug\multiplicação.pdb
lp/multiplicação/multiplicação/obj/Debug/multiplicação.exe
lp/multiplicação/multiplicação/obj/Debug/multiplicação.pdb
lp/multiplicação/multiplicação/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
lp/multiplicação/multiplicação/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
lp/multiplicação/multiplicação/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
lp/multiplicação/multiplicação/Program.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace multiplicação
{
 class Program
 {
 static void Main(string[] args)
 {
 int n1, n2, multiplicaçao;
 Console.WriteLine("PROGRAMA PARA MULTIPLICAR 2 NUMEROS");
 Console.WriteLine("DIGITE O 1º NUMERO: ");
 n1 = int.Parse(Console.ReadLine());
 Console.WriteLine("DIGITE O 2º NUMERO: ");
 n2 = int.Parse(Console.ReadLine()); 
 multiplicaçao = n1 * n2;
 Console.WriteLine("A MULTIPLICAÇÃO É: " + n1 + "*" + n2 + "=" + multiplicaçao);
 Console.ReadKey();
 }
 }
}
lp/multiplicação/multiplicação/Properties/AssemblyInfo.cs
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following 
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("multiplicação")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Microsoft")]
[assembly: AssemblyProduct("multiplicação")]
[assembly: AssemblyCopyright("Copyright © Microsoft 2016")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// Setting ComVisible to false makes the types in this assembly not visible 
// to COM components. If you need to access a type in this assembly from 
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]
// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("bca3f745-5a92-4a34-946a-b740cd69c7dd")]
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version 
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers 
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
lp/multiplicação/multiplicação.sln
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2013
VisualStudioVersion = 12.0.30723.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "multiplicação", "multiplicação\multiplicação.csproj", "{27383982-FE24-4CAD-BF82-330A28A6997A}"
EndProject
Global
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|Any CPU = Debug|Any CPU
		Release|Any CPU = Release|Any CPU
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{27383982-FE24-4CAD-BF82-330A28A6997A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{27383982-FE24-4CAD-BF82-330A28A6997A}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{27383982-FE24-4CAD-BF82-330A28A6997A}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{27383982-FE24-4CAD-BF82-330A28A6997A}.Release|Any CPU.Build.0 = Release|Any CPU
	EndGlobalSection
	GlobalSection(SolutionProperties) = preSolution
		HideSolutionNode = FALSE
	EndGlobalSection
EndGlobal
lp/multiplicação/multiplicação.v12.suo
lp/potencia/media/media/App.config
 
 
 
 
lp/potencia/media/media/bin/Debug/media.exe
lp/potencia/media/media/bin/Debug/media.exe.config
 
 
 
 
lp/potencia/media/media/bin/Debug/media.pdb
lp/potencia/media/media/bin/Debug/media.vshost.exe
lp/potencia/media/media/bin/Debug/media.vshost.exe.config
 
 
 
 
lp/potencia/media/media/bin/Debug/media.vshost.exe.manifest
 
 
 
 
 
 
 
 
 
lp/potencia/media/media/media.csproj
 
 
 
 Debug
 AnyCPU
 {F0941327-DD05-4014-9218-23DFD9EB09C7}
 Exe
 Properties
 media
 media
 v4.5
 512
 
 
 AnyCPU
 true
 full
 false
 bin\Debug\
 DEBUG;TRACE
 prompt
 4
 
 
 AnyCPU
 pdbonly
 true
 bin\Release\
 TRACE
 prompt
 4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
lp/potencia/media/media/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
lp/potencia/media/media/obj/Debug/media.csproj.FileListAbsolute.txt
F:\JONATHAN\lp\media\media\media\bin\Debug\media.exe.config
F:\JONATHAN\lp\media\media\media\bin\Debug\media.exe
F:\JONATHAN\lp\media\media\media\bin\Debug\media.pdb
F:\JONATHAN\lp\media\media\media\obj\Debug\media.csprojResolveAssemblyReference.cache
F:\JONATHAN\lp\media\media\media\obj\Debug\media.exe
F:\JONATHAN\lp\media\media\media\obj\Debug\media.pdb
F:\JONATHAN\lp\potencia\media\media\bin\Debug\media.exe.config
F:\JONATHAN\lp\potencia\media\media\obj\Debug\media.exe
F:\JONATHAN\lp\potencia\media\media\obj\Debug\media.pdb
lp/potencia/media/media/obj/Debug/media.csprojResolveAssemblyReference.cache
lp/potencia/media/media/obj/Debug/media.exe
lp/potencia/media/media/obj/Debug/media.pdb
lp/potencia/media/media/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
lp/potencia/media/media/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
lp/potencia/media/media/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
lp/potencia/media/media/Program.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace media
{
 class Program
 {
 static void Main(string[] args)
 {
 Double n1, n2, result;
 Console.Title = "Potência";
 Console.WriteLine("Digite um número: ");
 n1 = Convert.ToDouble(Console.ReadLine());
 Console.WriteLine("Digite outro número: ");
 n2 = Convert.ToDouble(Console.ReadLine());
 result = Math.Pow(n1, n2);
 Console.WriteLine("A potência dos números é: " + result);
 Console.ReadKey();
 }
 }
}
lp/potencia/media/media/Properties/AssemblyInfo.cs
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following 
// set of attributes. Change these attribute values to modify the information
// associated with
an assembly.
[assembly: AssemblyTitle("media")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Microsoft")]
[assembly: AssemblyProduct("media")]
[assembly: AssemblyCopyright("Copyright © Microsoft 2016")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// Setting ComVisible to false makes the types in this assembly not visible 
// to COM components. If you need to access a type in this assembly from 
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]
// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("55f3dc07-dae1-446b-b97b-8a7240ffb9ad")]
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version 
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers 
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
lp/potencia/media/media.sln
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2013
VisualStudioVersion = 12.0.30723.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "media", "media\media.csproj", "{F0941327-DD05-4014-9218-23DFD9EB09C7}"
EndProject
Global
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|Any CPU = Debug|Any CPU
		Release|Any CPU = Release|Any CPU
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{F0941327-DD05-4014-9218-23DFD9EB09C7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{F0941327-DD05-4014-9218-23DFD9EB09C7}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{F0941327-DD05-4014-9218-23DFD9EB09C7}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{F0941327-DD05-4014-9218-23DFD9EB09C7}.Release|Any CPU.Build.0 = Release|Any CPU
	EndGlobalSection
	GlobalSection(SolutionProperties) = preSolution
		HideSolutionNode = FALSE
	EndGlobalSection
EndGlobal
lp/potencia/media/media.v12.suo
lp/potencia/media2/media2/App.config
 
 
 
 
lp/potencia/media2/media2/bin/Debug/media2.exe.config
 
 
 
 
lp/potencia/media2/media2/bin/Debug/media2.vshost.exe
lp/potencia/media2/media2/bin/Debug/media2.vshost.exe.config
 
 
 
 
lp/potencia/media2/media2/bin/Debug/media2.vshost.exe.manifest
 
 
 
 
 
 
 
 
 
lp/potencia/media2/media2/media2.csproj
 
 
 
 Debug
 AnyCPU
 {3A39BDDB-4368-4E53-88DF-BE50920926F3}
 Exe
 Properties
 media2
 media2
 v4.5
 512
 
 
 AnyCPU
 true
 full
 false
 bin\Debug\
 DEBUG;TRACE
 prompt
 4
 
 
 AnyCPU
 pdbonly
 true
 bin\Release\
 TRACE
 prompt
 4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
lp/potencia/media2/media2/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
lp/potencia/media2/media2/obj/Debug/media2.csproj.FileListAbsolute.txt
F:\JONATHAN\lp\media\media2\media2\bin\Debug\media2.exe.config
lp/potencia/media2/media2/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
lp/potencia/media2/media2/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
lp/potencia/media2/media2/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
lp/potencia/media2/media2/Program.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace media2
{
 class Program
 {
 static void Main(string[] args)
 {
 }
 }
}
lp/potencia/media2/media2/Properties/AssemblyInfo.cs
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following 
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("media2")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Microsoft")]
[assembly: AssemblyProduct("media2")]
[assembly: AssemblyCopyright("Copyright © Microsoft 2016")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// Setting ComVisible to false makes the types in this assembly not visible 
// to COM components. If you need to access a type in this assembly from 
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]
// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("fc41eb8e-a86d-4562-bda1-95588cfa02c2")]
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version 
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers 
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
lp/potencia/media2/media2.sln
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2013
VisualStudioVersion = 12.0.30723.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "media2", "media2\media2.csproj", "{3A39BDDB-4368-4E53-88DF-BE50920926F3}"
EndProject
Global
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|Any CPU = Debug|Any CPU
		Release|Any CPU = Release|Any CPU
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{3A39BDDB-4368-4E53-88DF-BE50920926F3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{3A39BDDB-4368-4E53-88DF-BE50920926F3}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{3A39BDDB-4368-4E53-88DF-BE50920926F3}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{3A39BDDB-4368-4E53-88DF-BE50920926F3}.Release|Any CPU.Build.0 = Release|Any CPU
	EndGlobalSection
	GlobalSection(SolutionProperties) = preSolution
		HideSolutionNode = FALSE
	EndGlobalSection
EndGlobal
lp/potencia/media2/media2.v12.suo
lp/soma/soma/App.config
 
 
 
 
lp/soma/soma/bin/Debug/soma.exe
lp/soma/soma/bin/Debug/soma.exe.config
 
 
 
 
lp/soma/soma/bin/Debug/soma.pdb
lp/soma/soma/bin/Debug/soma.vshost.exe
lp/soma/soma/bin/Debug/soma.vshost.exe.config
 
 
 
 
lp/soma/soma/bin/Debug/soma.vshost.exe.manifest
 
 
 
 
 
 
 
 
 
lp/soma/soma/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
lp/soma/soma/obj/Debug/soma.csproj.FileListAbsolute.txt
C:\1Tipin\soma\soma\bin\Debug\soma.exe.config
C:\1Tipin\soma\soma\bin\Debug\soma.exe
C:\1Tipin\soma\soma\bin\Debug\soma.pdb
C:\1Tipin\soma\soma\obj\Debug\soma.csprojResolveAssemblyReference.cache
C:\1Tipin\soma\soma\obj\Debug\soma.exe
C:\1Tipin\soma\soma\obj\Debug\soma.pdb
F:\JONATHAN\lp\soma\soma\bin\Debug\soma.exe.config
F:\JONATHAN\lp\soma\soma\obj\Debug\soma.exe
F:\JONATHAN\lp\soma\soma\obj\Debug\soma.pdb
lp/soma/soma/obj/Debug/soma.csprojResolveAssemblyReference.cache
lp/soma/soma/obj/Debug/soma.exe
lp/soma/soma/obj/Debug/soma.pdb
lp/soma/soma/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
lp/soma/soma/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
lp/soma/soma/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
lp/soma/soma/Program.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace soma // Program:soma
{
 class Program
 {
static void Main(string[] args)
 {
 int n1, n2, soma;
 Console.WriteLine("programa de somar 2 números");
 Console.WriteLine("digite o 1º número:");
 n1 = int.Parse(Console.ReadLine());
 Console.WriteLine("digite o 2º número");
 n2 = int.Parse(Console.ReadLine());
 soma = n1 + n2;
 Console.WriteLine("a soma de " +n1+ "+ "+n2+"="+soma);
 Console.ReadKey();
 } 
 }
}
lp/soma/soma/Properties/AssemblyInfo.cs
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following 
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("soma")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Microsoft")]
[assembly: AssemblyProduct("soma")]
[assembly: AssemblyCopyright("Copyright © Microsoft 2016")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// Setting ComVisible to false makes the types in this assembly not visible 
// to COM components. If you need to access a type in this assembly from 
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]
// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("0b060b21-aeaf-45e2-a324-c62481745f44")]
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version 
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers 
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
lp/soma/soma/soma.csproj
 
 
 
 Debug
 AnyCPU
 {3D44EBE1-38E1-49FB-83FC-402778A3477E}
 Exe
 Properties
 soma
 soma
 v4.5
 512
 
 
 AnyCPU
 true
 full
 false
 bin\Debug\
 DEBUG;TRACE
 prompt
 4
 
 
 AnyCPU
 pdbonly
 true
 bin\Release\
 TRACE
 prompt
 4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
lp/soma/soma.sln
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2013
VisualStudioVersion = 12.0.30723.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "soma", "soma\soma.csproj", "{3D44EBE1-38E1-49FB-83FC-402778A3477E}"
EndProject
Global
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|Any CPU = Debug|Any CPU
		Release|Any CPU = Release|Any CPU
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{3D44EBE1-38E1-49FB-83FC-402778A3477E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{3D44EBE1-38E1-49FB-83FC-402778A3477E}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{3D44EBE1-38E1-49FB-83FC-402778A3477E}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{3D44EBE1-38E1-49FB-83FC-402778A3477E}.Release|Any CPU.Build.0 = Release|Any CPU
	EndGlobalSection
	GlobalSection(SolutionProperties) = preSolution
		HideSolutionNode = FALSE
	EndGlobalSection
EndGlobal
lp/soma/soma.v12.suo
lp/subtração/subtração/App.config
 
 
 
 
lp/subtração/subtração/bin/Debug/subtração.exe
lp/subtração/subtração/bin/Debug/subtração.exe.config
 
 
 
 
lp/subtração/subtração/bin/Debug/subtração.pdb
lp/subtração/subtração/bin/Debug/subtração.vshost.exe
lp/subtração/subtração/bin/Debug/subtração.vshost.exe.config
 
 
 
 
lp/subtração/subtração/bin/Debug/subtração.vshost.exe.manifest
 
 
 
 
 
 
 
 
 
lp/subtração/subtração/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
lp/subtração/subtração/obj/Debug/subtração.csproj.FileListAbsolute.txt
C:\1Tipin\subtração\subtração\bin\Debug\subtração.exe.config
C:\1Tipin\subtração\subtração\bin\Debug\subtração.exe
C:\1Tipin\subtração\subtração\bin\Debug\subtração.pdb
C:\1Tipin\subtração\subtração\obj\Debug\subtração.csprojResolveAssemblyReference.cache
C:\1Tipin\subtração\subtração\obj\Debug\subtração.exe
C:\1Tipin\subtração\subtração\obj\Debug\subtração.pdb
lp/subtração/subtração/obj/Debug/subtração.csprojResolveAssemblyReference.cache
lp/subtração/subtração/obj/Debug/subtração.exe
lp/subtração/subtração/obj/Debug/subtração.pdb
lp/subtração/subtração/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
lp/subtração/subtração/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
lp/subtração/subtração/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
lp/subtração/subtração/Program.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace subtração
{
 class Program
 {
 static void Main(string[] args)
 {
 float n1, n2, subtraçao;
 Console.WriteLine("programa para subtrair 2 números");
 Console.WriteLine(" digite o 1º número");
 n1 = float.Parse(Console.ReadLine());
 Console.WriteLine("digite o 2º número");
 n2 = float.Parse(Console.ReadLine());
 subtraçao = n1 - n2;
 Console.WriteLine("a subtraçao de " + n1 + "-" + n2 + "=" + subtraçao);
 Console.ReadKey();
 }
 }
}
lp/subtração/subtração/Properties/AssemblyInfo.cs
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following 
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("subtração")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Microsoft")]
[assembly: AssemblyProduct("subtração")]
[assembly: AssemblyCopyright("Copyright © Microsoft 2016")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// Setting ComVisible to false makes the types in this assembly not visible 
// to COM components. If you need to access a type in this assembly from 
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]
// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("49345ad7-9f50-4ce4-bc74-f150e88068f6")]
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version 
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers 
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
lp/subtração/subtração/subtração.csproj
 
 
 
 Debug
 AnyCPU
 {5F9CB07A-44C4-477B-89B0-3D7E70F2A9CE}
 Exe
 Properties
 subtração
 subtração
 v4.5
 512
 
 
 AnyCPU
 true
 full
 false
 bin\Debug\
 DEBUG;TRACE
 prompt
 4
 
 
 AnyCPU
 pdbonly
 true
 bin\Release\
 TRACE
 prompt
 4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
lp/subtração/subtração.sln
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2013
VisualStudioVersion = 12.0.30723.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "subtração", "subtração\subtração.csproj", "{5F9CB07A-44C4-477B-89B0-3D7E70F2A9CE}"
EndProject
Global
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|Any CPU = Debug|Any CPU
		Release|Any CPU = Release|Any CPU
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{5F9CB07A-44C4-477B-89B0-3D7E70F2A9CE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{5F9CB07A-44C4-477B-89B0-3D7E70F2A9CE}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{5F9CB07A-44C4-477B-89B0-3D7E70F2A9CE}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{5F9CB07A-44C4-477B-89B0-3D7E70F2A9CE}.Release|Any CPU.Build.0 = Release|Any CPU
	EndGlobalSection
	GlobalSection(SolutionProperties) = preSolution
		HideSolutionNode = FALSE
	EndGlobalSection
EndGlobal
lp/subtração/subtração.v12.suo
lp/tabuada/ConsoleApplication1/ConsoleApplication1/App.config
 
 
 
 
lp/tabuada/ConsoleApplication1/ConsoleApplication1/bin/Debug/ConsoleApplication1.exe
lp/tabuada/ConsoleApplication1/ConsoleApplication1/bin/Debug/ConsoleApplication1.exe.config
 
 
 
 
lp/tabuada/ConsoleApplication1/ConsoleApplication1/bin/Debug/ConsoleApplication1.pdb
lp/tabuada/ConsoleApplication1/ConsoleApplication1/bin/Debug/ConsoleApplication1.vshost.exe
lp/tabuada/ConsoleApplication1/ConsoleApplication1/bin/Debug/ConsoleApplication1.vshost.exe.config
 
 
 
 
lp/tabuada/ConsoleApplication1/ConsoleApplication1/bin/Debug/ConsoleApplication1.vshost.exe.manifest
 
 
 
 
 
 
 
 
 
lp/tabuada/ConsoleApplication1/ConsoleApplication1/ConsoleApplication1.csproj
 
 
 
 Debug
 AnyCPU
 {FF98CE78-7D35-41AA-B8CA-8E51F5323D6C}
 Exe
 Properties
 ConsoleApplication1
 ConsoleApplication1
 v4.5
 512
 
 
 AnyCPU
 true
 full
 false
 bin\Debug\
 DEBUG;TRACE
 prompt
 4
 
 
 AnyCPU
 pdbonly
 true
 bin\Release\
 TRACE
 prompt
 4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
lp/tabuada/ConsoleApplication1/ConsoleApplication1/obj/Debug/ConsoleApplication1.csproj.FileListAbsolute.txt
C:\Users\Programacao\Desktop\lp\tabuada\ConsoleApplication1\ConsoleApplication1\bin\Debug\ConsoleApplication1.exe.config
C:\Users\Programacao\Desktop\lp\tabuada\ConsoleApplication1\ConsoleApplication1\bin\Debug\ConsoleApplication1.exe
C:\Users\Programacao\Desktop\lp\tabuada\ConsoleApplication1\ConsoleApplication1\bin\Debug\ConsoleApplication1.pdb
C:\Users\Programacao\Desktop\lp\tabuada\ConsoleApplication1\ConsoleApplication1\obj\Debug\ConsoleApplication1.exe
C:\Users\Programacao\Desktop\lp\tabuada\ConsoleApplication1\ConsoleApplication1\obj\Debug\ConsoleApplication1.pdb
lp/tabuada/ConsoleApplication1/ConsoleApplication1/obj/Debug/ConsoleApplication1.exe
lp/tabuada/ConsoleApplication1/ConsoleApplication1/obj/Debug/ConsoleApplication1.pdb
lp/tabuada/ConsoleApplication1/ConsoleApplication1/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
lp/tabuada/ConsoleApplication1/ConsoleApplication1/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
lp/tabuada/ConsoleApplication1/ConsoleApplication1/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
lp/tabuada/ConsoleApplication1/ConsoleApplication1/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
lp/tabuada/ConsoleApplication1/ConsoleApplication1/Program.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace soma 
{
 class Program
 {
 static void Main(string[] args)
 {
 int i, j;
 char resp;
 do
 {
 resp = 'S';
 while (resp == 'S' || resp == 's')
 {
 Console.WriteLine("Programa de tabuada");
 Console.WriteLine("digite o número:");
 i = int.Parse(Console.ReadLine());
 for (j = 1; j <= 10; j++) {
 Console.WriteLine(i + " x " + j + " = " + (i * j));
 }
 Console.WriteLine("Deseja continuar? (S/N)");
 resp = char.Parse(Console.ReadLine());
 };
 } while (resp == 'S' || resp == 's');
 }
 }
}
lp/tabuada/ConsoleApplication1/ConsoleApplication1/Properties/AssemblyInfo.cs
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following 
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("ConsoleApplication1")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Microsoft")]
[assembly: AssemblyProduct("ConsoleApplication1")]
[assembly: AssemblyCopyright("Copyright © Microsoft 2016")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// Setting ComVisible to false makes the types in this assembly not visible 
// to COM components. If you need to access a type in this assembly from 
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]
// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("5054a6e3-b226-4ac6-901a-2ef54c6f14be")]
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version 
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers 
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
lp/tabuada/ConsoleApplication1/ConsoleApplication1.sln
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2013
VisualStudioVersion = 12.0.30723.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ConsoleApplication1", "ConsoleApplication1\ConsoleApplication1.csproj", "{FF98CE78-7D35-41AA-B8CA-8E51F5323D6C}"
EndProject
Global
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|Any CPU = Debug|Any CPU
		Release|Any CPU = Release|Any CPU
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{FF98CE78-7D35-41AA-B8CA-8E51F5323D6C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{FF98CE78-7D35-41AA-B8CA-8E51F5323D6C}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{FF98CE78-7D35-41AA-B8CA-8E51F5323D6C}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{FF98CE78-7D35-41AA-B8CA-8E51F5323D6C}.Release|Any CPU.Build.0 = Release|Any CPU
	EndGlobalSection
	GlobalSection(SolutionProperties) = preSolution
		HideSolutionNode = FALSE
	EndGlobalSection
EndGlobal
lp/tabuada/ConsoleApplication1/ConsoleApplication1.v12.suo
lp/triangulo/triangulo/triangulo/App.config
 
 
 
 
lp/triangulo/triangulo/triangulo/bin/Debug/triangulo.exe
lp/triangulo/triangulo/triangulo/bin/Debug/triangulo.exe.config
 
 
 
 
lp/triangulo/triangulo/triangulo/bin/Debug/triangulo.pdb
lp/triangulo/triangulo/triangulo/bin/Debug/triangulo.vshost.exe
lp/triangulo/triangulo/triangulo/bin/Debug/triangulo.vshost.exe.config
 
 
 
 
lp/triangulo/triangulo/triangulo/bin/Debug/triangulo.vshost.exe.manifest
 
 
 
 
 
 
 
 
 
lp/triangulo/triangulo/triangulo/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
lp/triangulo/triangulo/triangulo/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
lp/triangulo/triangulo/triangulo/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
lp/triangulo/triangulo/triangulo/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
lp/triangulo/triangulo/triangulo/obj/Debug/triangulo.csproj.FileListAbsolute.txt
F:\JONATHAN\lp\triangulo\triangulo\triangulo\bin\Debug\triangulo.exe.config
F:\JONATHAN\lp\triangulo\triangulo\triangulo\bin\Debug\triangulo.exe
F:\JONATHAN\lp\triangulo\triangulo\triangulo\bin\Debug\triangulo.pdb
F:\JONATHAN\lp\triangulo\triangulo\triangulo\obj\Debug\triangulo.csprojResolveAssemblyReference.cache
F:\JONATHAN\lp\triangulo\triangulo\triangulo\obj\Debug\triangulo.exe
F:\JONATHAN\lp\triangulo\triangulo\triangulo\obj\Debug\triangulo.pdb
C:\Users\Programacao\Desktop\lp\triangulo\triangulo\triangulo\bin\Debug\triangulo.exe.config
C:\Users\Programacao\Desktop\lp\triangulo\triangulo\triangulo\obj\Debug\triangulo.exe
C:\Users\Programacao\Desktop\lp\triangulo\triangulo\triangulo\obj\Debug\triangulo.pdb
C:\Users\Programacao\Desktop\lp\triangulo\triangulo\triangulo\bin\Debug\triangulo.exe
C:\Users\Programacao\Desktop\lp\triangulo\triangulo\triangulo\bin\Debug\triangulo.pdb
C:\Users\Programacao\Desktop\lp\triangulo\triangulo\triangulo\obj\Debug\triangulo.csprojResolveAssemblyReference.cache
lp/triangulo/triangulo/triangulo/obj/Debug/triangulo.csprojResolveAssemblyReference.cache
lp/triangulo/triangulo/triangulo/obj/Debug/triangulo.exe
lp/triangulo/triangulo/triangulo/obj/Debug/triangulo.pdb
lp/triangulo/triangulo/triangulo/Program.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace triangulo
{
 class Program
 {
 static void Main(string[] args)
 {
 double l1, l2, l3;
 char resp;
 do{
 resp = 'S';
 while (resp == 'S' || resp == 's')
 {
 Console.WriteLine("Digite o valor de L1: ");
 l1 = double.Parse(Console.ReadLine());
 Console.WriteLine("Digite o valor de L2: ");
 l2 = double.Parse(Console.ReadLine());
 Console.WriteLine("Digite o valor de L3: ");
 l3 = double.Parse(Console.ReadLine());
 if ((l1 >= (l2 + l3)) || (l2 >= (l3 + l1)) || (l3 >= (l2 + l1)))
 {
 Console.WriteLine("Não é um triângulo!");
 } 
 else
 {
 if ((l1 == l3) && (l1 == l2) && (l2 == l3))
 {
 Console.WriteLine("O triângulo é equilátero");
 }
 else
 {
 if((l1!=l3)&&(l1!=l2)&&(l2!=l3))
 {
 Console.WriteLine("O triângulo é escaleno");
 }
 else
 {
 if ((l1 == l2) || (l1 == l3) || (l2 == l3)) 
 {
 Console.WriteLine("O triângulo é isósceles");
 }
 } 
 }
 }
 Console.WriteLine("Deseja continuar? (S/N)");
 resp = char.Parse(Console.ReadLine());
 };
 } while (resp == 'S' || resp == 's');
 }
 }
}
lp/triangulo/triangulo/triangulo/Properties/AssemblyInfo.cs
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following 
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("triangulo")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Microsoft")]
[assembly: AssemblyProduct("triangulo")]
[assembly: AssemblyCopyright("Copyright © Microsoft 2016")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// Setting ComVisible to false makes the types in this assembly not visible 
// to COM components. If you need to access a type in this assembly from 
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]
// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("6356f088-5d0c-42b7-bf97-5e7439ffa8fb")]
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version 
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers 
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
lp/triangulo/triangulo/triangulo/triangulo.csproj
 
 
 
 Debug
 AnyCPU
 {F41210D4-47BB-4288-A724-7310637C6EEC}
 Exe
 Properties
 triangulo
 triangulo
 v4.5
 512
 
 
 AnyCPU
 true
 full
 false
 bin\Debug\
 DEBUG;TRACE
 prompt
 4
 
 
 AnyCPU
 pdbonly
 true
 bin\Release\
 TRACE
 prompt
 4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
lp/triangulo/triangulo/triangulo.sln
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2013
VisualStudioVersion = 12.0.30723.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "triangulo", "triangulo\triangulo.csproj", "{F41210D4-47BB-4288-A724-7310637C6EEC}"
EndProject
Global
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|Any CPU = Debug|Any CPU
		Release|Any CPU = Release|Any CPU
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{F41210D4-47BB-4288-A724-7310637C6EEC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{F41210D4-47BB-4288-A724-7310637C6EEC}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{F41210D4-47BB-4288-A724-7310637C6EEC}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{F41210D4-47BB-4288-A724-7310637C6EEC}.Release|Any CPU.Build.0 = Release|Any CPU
	EndGlobalSection
	GlobalSection(SolutionProperties) = preSolution
		HideSolutionNode = FALSE
	EndGlobalSection
EndGlobal
lp/triangulo/triangulo/triangulo.v12.suo
lp/WHILE/soma/App.config
 
 
 
 
lp/WHILE/soma/bin/Debug/soma.exe
lp/WHILE/soma/bin/Debug/soma.exe.config
 
 
 
 
lp/WHILE/soma/bin/Debug/soma.pdb
lp/WHILE/soma/bin/Debug/soma.vshost.exe
lp/WHILE/soma/bin/Debug/soma.vshost.exe.config
 
 
 
 
lp/WHILE/soma/bin/Debug/soma.vshost.exe.manifest
 
 
 
 
 
 
 
 
 
lp/WHILE/soma/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
lp/WHILE/soma/obj/Debug/soma.csproj.FileListAbsolute.txt
C:\1Tipin\soma\soma\bin\Debug\soma.exe.config
C:\1Tipin\soma\soma\bin\Debug\soma.exe
C:\1Tipin\soma\soma\bin\Debug\soma.pdb
C:\1Tipin\soma\soma\obj\Debug\soma.csprojResolveAssemblyReference.cache
C:\1Tipin\soma\soma\obj\Debug\soma.exe
C:\1Tipin\soma\soma\obj\Debug\soma.pdb
F:\JONATHAN\lp\soma\soma\bin\Debug\soma.exe.config
F:\JONATHAN\lp\soma\soma\obj\Debug\soma.exe
F:\JONATHAN\lp\soma\soma\obj\Debug\soma.pdb
C:\Users\Programacao\Desktop\lp\WHILE\soma\bin\Debug\soma.exe.config
C:\Users\Programacao\Desktop\lp\WHILE\soma\obj\Debug\soma.exe
C:\Users\Programacao\Desktop\lp\WHILE\soma\obj\Debug\soma.pdb
C:\Users\Programacao\Desktop\lp\WHILE\soma\bin\Debug\soma.exe
C:\Users\Programacao\Desktop\lp\WHILE\soma\bin\Debug\soma.pdb
C:\Users\Programacao\Desktop\lp\WHILE\soma\obj\Debug\soma.csprojResolveAssemblyReference.cache
lp/WHILE/soma/obj/Debug/soma.csprojResolveAssemblyReference.cache
lp/WHILE/soma/obj/Debug/soma.exe
lp/WHILE/soma/obj/Debug/soma.pdb

Teste o Premium para desbloquear

Aproveite todos os benefícios por 3 dias sem pagar! 😉
Já tem cadastro?

Outros materiais