Note abaixo as configurações para melhorar o desempenho do seu JDeveloper
Acesse o menu Tools >> Preferences >> Code Editor >> Save Actions Remova o item “Build After Save”, clicando no X no canto superior direito.
Console.Clear(); | |
Console.WriteLine("Técnico em Informática"); | |
Console.WriteLine("---------------------------------------------------"); | |
Console.ForegroundColor = ConsoleColor.Red; | |
Console.Write("- GSO"); | |
Console.WriteLine(" - Gestão de Sistemas Operacionais"); | |
Console.ForegroundColor = ConsoleColor.Blue; | |
Console.Write("- OCA I"); | |
Console.WriteLine(" - Operação e Configuração de Aplicativos I"); |
//SequenciaLimites | |
Console.Clear(); | |
int numeroUm = Int32.MinValue; | |
int numeroDois = Int32.MaxValue; | |
int aux; | |
do | |
{ | |
if (numeroUm != Int32.MinValue || numeroDois != Int32.MaxValue) |
Console.WriteLine("Vamos calcular a área de um quadrado"); | |
Console.Write("Digite o lado (somente números): "); | |
string sNumero01 = Console.ReadLine()!; | |
double lado; | |
try | |
{ | |
lado = Convert.ToDouble(sNumero01); |
dir | |
dir /? | |
cls | |
help | |
cd | |
- cd <nomeDaPasta> | |
- cd . | |
- cd .. | |
md <nomeDaPasta> |
{ | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
// Use IntelliSense to find out which attributes exist for C# debugging | |
// Use hover for the description of the existing attributes | |
// For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md | |
"name": ".NET Core Launch (console)", | |
"type": "coreclr", | |
"request": "launch", |
using System; | |
/* | |
Receba um número inteiro positivo. Exiba todos os números pares entre zero e o número digitado (inclusive). | |
Ex.: | |
Números pares entre 0 e ? 15 | |
0 2 4 6 8 10 12 14 | |
*/ |
using System; | |
namespace aula_30_04_2021 | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
double n1, n2, n3, n4; |
using System; | |
public class Program | |
{ | |
public static void Main() | |
{ | |
const double paraKms = 0.001; | |
const double paraCms = 100; | |
double metros, kms, cms; |
using System; | |
namespace NomeCompleto | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
string nome; | |
string sobrenome; |
Note abaixo as configurações para melhorar o desempenho do seu JDeveloper
Acesse o menu Tools >> Preferences >> Code Editor >> Save Actions Remova o item “Build After Save”, clicando no X no canto superior direito.