Advertisement
buzzonit

JAVA oscar

Mar 3rd, 2016
489
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 27.07 KB | None | 0 0
  1.   https://www.passeidireto.com/arquivo/4347776/java-basico---exercicios-resolvidos-
  2.  
  3.  
  4. exercicios
  5. 1)faca um aplicativo que leia 5 valores inteiros e informe a media.
  6. 2)faca um apicativo que calcule a area de um circulo.
  7. 3)faca um aplicativo que leia dois valores e calcule a;
  8. *divisao
  9. *multiplicacao
  10. *adicao
  11. *subtracao
  12. exibir valores
  13.  
  14.  
  15. int v1,v2,v3,v4,v5,media;
  16.       Scanner s= new Scanner (System.in);
  17.         System.out.println("digite valor 1");
  18.         v1 = s.nextInt();
  19.         System.out.println("digite valor 2");
  20.         v2 = s.nextInt();
  21.           System.out.println("digite valor 3");
  22.         v3 = s.nextInt();
  23.         System.out.println("digite valor 4");
  24.         v4 = s.nextInt();
  25.           System.out.println("digite valor 5");
  26.         v5 = s.nextInt();
  27.        
  28.         media = (v1+v2+v3+v4+v5)/5;
  29.        
  30.         System.out.println("media e:"+ media);
  31.  
  32.  
  33.  
  34. exercicio 2
  35.  
  36. float A,r;
  37.      
  38.       Scanner s= new Scanner (System.in);
  39.         System.out.println("digite raio");
  40.         r = s.nextFloat();
  41.        
  42.         A = (float) 3.14*(r*r);
  43.        
  44.         System.out.println("o valor da area e:"+A);
  45.  
  46. exercicio 3
  47.   float v1,v2,div,mul,soma,sub;
  48.      
  49.       Scanner s= new Scanner (System.in);
  50.         System.out.println("digite um valor 1");
  51.         v1 = s.nextFloat();
  52.        
  53.         System.out.println("digite um valor 2");
  54.         v2 = s.nextFloat();
  55.        
  56.          div = v1/v2;
  57.          mul = v1*v2;
  58.          soma = v1+v2;
  59.          sub = v1-v2;
  60.        
  61.         System.out.println("divisao"+div+"multiplicao"+mul+"soma"+soma+"subtracao"+sub);
  62.  
  63.  
  64.  
  65. int a,b,c,soma;
  66.        Scanner s= new Scanner (System.in);
  67.         System.out.println("digite a");
  68.         a = s.nextInt();
  69.        
  70.         System.out.println("digite b");
  71.         b = s.nextInt();
  72.        
  73.         System.out.println("digite c");
  74.         c = s.nextInt();
  75.        
  76.         soma = (a*b)/c;
  77.        
  78.         System.out.println("reposta e:"+ soma);
  79.  
  80.  
  81.  int n,soma,subtracao;
  82.      
  83.       Scanner s= new Scanner (System.in);
  84.      
  85.         System.out.println("digite n");
  86.         n = nextInt();
  87.        
  88.         if (n > 0) {
  89.          subtracao = n - 1;
  90.          soma = n + 1;
  91.             System.out.println("resultado:"+ subtracao + soma);
  92.         }
  93.         else{ System.out.println("numero invalido");
  94.  
  95. EXERCICIO 1
  96.  
  97.    float idade1,idade2,idade3,media;
  98.        
  99.         idade1 = Float.valueOf(JOptionPane.showInputDialog("idade primeiro aluno"));
  100.        
  101.         JOptionPane.showMessageDialog(null,"idade do aluno e:"+ idade);
  102.        
  103.           idade2 = Float.valueOf(JOptionPane.showInputDialog("idade segundo aluno"));
  104.        
  105.         JOptionPane.showMessageDialog(null,"idade do aluno e:"+ idade);
  106.        
  107.           idade3 = Float.valueOf(JOptionPane.showInputDialog("idade terceiro aluno"));
  108.        
  109.         JOptionPane.showMessageDialog(null,"idade do aluno e:"+ idade);
  110.        
  111.         media = (idade1+idade2+idade3)/3;
  112.        
  113.         JOptionPane.showMessageDialog(null,"media de idade e:"+ media);
  114.  
  115.  
  116.  
  117.  
  118. EXERCICIO 2
  119.   String nome1,nome2;
  120.         float idade1,idade2,media;
  121.        
  122.        
  123.         nome1 = JOptionPane.showInputDialog("nome marido:");
  124.        
  125.         JOptionPane.showMessageDialog(null,"idade do aluno e:"+ nome1);
  126.        
  127.        
  128.         nome2 = JOptionPane.showInputDialog("nome esposa");
  129.        
  130.         JOptionPane.showMessageDialog(null,"nome esposa:"+ nome2);
  131.        
  132.        
  133.           idade1 = Float.valueOf(JOptionPane.showInputDialog("idade marido"));
  134.        
  135.         JOptionPane.showMessageDialog(null,"idade do marido:"+ idade1);
  136.        
  137.        
  138.            idade2 = Float.valueOf(JOptionPane.showInputDialog("idade esposa"));
  139.        
  140.         JOptionPane.showMessageDialog(null,"idade da esposa:"+ idade2);
  141.        
  142.        
  143.        
  144.        
  145.         media = (idade1+idade2)/2;
  146.        
  147.         JOptionPane.showMessageDialog(null,"media de idade e:" + media + "," + nome1 + "," + nome2);
  148.  
  149.  
  150.  
  151.  
  152.   float peso,altura,imc;
  153.        
  154.         peso =  Float.valueOf(JOptionPane.showInputDialog("digite peso"));
  155.      
  156.         altura = Float.valueOf(JOptionPane.showInputDialog("digite altura"));
  157.        
  158.           imc = peso/(altura*altura);
  159.          
  160.           if (imc < 18) {
  161.                  
  162.         JOptionPane.showMessageDialog(null,"abaixo do peso :"+ imc);
  163.                   }
  164.          
  165.           if (imc >= 18 && imc < 24.9){
  166.              
  167.           JOptionPane.showMessageDialog(null,"peso normal:"+ imc);
  168.                   }
  169.          
  170.                   if (imc >= 25 && imc < 29.9){
  171.                      
  172.           JOptionPane.showMessageDialog(null,"acimad do peso:"+ imc);
  173.                   }
  174.                  
  175.                   if (imc >= 30 && imc < 34.9){
  176.                      
  177.                  
  178.                  JOptionPane.showMessageDialog(null,"obesidade grau 1:"+ imc);
  179.                   }
  180.                  
  181.                   if (imc >= 35 && imc < 39.9){
  182.                      
  183.                  JOptionPane.showMessageDialog(null,"obesidade grau 2:"+ imc);
  184.                   }
  185.                  
  186.                   if (imc >= 40 && imc < 44.9){
  187.                  
  188.             JOptionPane.showMessageDialog(null,"obesidade grau 3:"+ imc);
  189.                   }
  190.                   if(imc >= 75) {
  191.                          
  192.             JOptionPane.showMessageDialog(null,"hospital:"+ imc);
  193.  
  194.  
  195.   Scanner s = new Scanner (System.in);
  196.          String nome;
  197.          float nota1,nota2;
  198.          
  199.          System.out.println("digite nome");
  200.          nome = s.next();
  201.          
  202.          System.out.println("digite nota");
  203.          nota1 = s.nextFloat();
  204.  
  205.  
  206.    String nome;
  207.        float nota;
  208.        
  209.        Scanner s= new Scanner (System.in);
  210.         System.out.println("digite nota");
  211.         nota = s.nextFloat();
  212.        
  213.         if (nota <3)
  214.         {
  215.             System.out.println("nota re´rpvada");
  216.         }
  217.         if (nota >3)
  218.         {
  219.             System.out.println("aprovado");
  220.         }
  221.         else
  222.         {
  223.             System.out.println("nota reprovada");
  224.        
  225.    
  226.         }
  227.  
  228.  
  229. AULA 7
  230.  
  231.  
  232.      
  233.         float n ;
  234.         Scanner s= new Scanner (System.in);
  235.         System.out.println("digite numero");
  236.         n = s.nextFloat();
  237.        
  238.         if (n %2 == 0)
  239.                 {
  240.                     System.out.println("numero e par");
  241.                    
  242.                 }
  243.                 else
  244.                 {
  245.                         System.out.println("numero impar");
  246.                         }
  247.  
  248.  
  249. exercicio 2
  250.     float sa,sa1,sa2,soma ;
  251.         Scanner s= new Scanner (System.in);
  252.         System.out.println("SALARIO");
  253.         sa=s.nextFloat();
  254.        
  255.         if (sa>1500){
  256.             sa1 = sa+(sa/100*15);
  257.        
  258.                     System.out.println("reajuste salario:"+sa1);
  259.                    
  260.         }
  261.                
  262.         else{
  263.                     sa2 = sa+(sa/100*25);
  264.    
  265.                
  266.                         System.out.println("reajuste:"+sa2);
  267.             }
  268.  
  269. exercicio 3
  270.    float n ;
  271.         Scanner s= new Scanner (System.in);
  272.         System.out.println("numero");
  273.         n=s.nextFloat();
  274.        
  275.         if (n>0){
  276.            
  277.  
  278.         System.out.println("numero positivo");
  279.                    
  280.         }
  281.                
  282.         if (n<1){
  283.                    
  284.                         System.out.println("negativo");
  285.             }
  286.         if (n==0)
  287.         {
  288.             System.out.println("numero neutro");
  289.            
  290.         }
  291.  
  292.  int n1,n2,n3,m,m1;
  293.       Scanner s= new Scanner (System.in);
  294.      
  295.         System.out.println("primeira nota");
  296.        n1 = s.nextInt();
  297.        
  298.         System.out.println("segunda nota");
  299.         n2 =s.nextInt();
  300.        
  301.         System.out.println("terceria nota");
  302.         n3 = s.nextInt();
  303.        
  304.         m = (n1+n2+n3)/3;
  305.        
  306.        
  307.         if (m == 0 || m < 3)
  308.         {
  309.             System.out.println("reprovado");
  310.         }
  311.         if (m == 3 || m < 7)
  312.            
  313.         {
  314.             System.out.println("exame");
  315.        
  316.      
  317.            
  318.             m1 = 12-m;
  319.            
  320.             System.out.println("voce precisara de:"+m1);
  321.         }
  322.         else
  323.         {
  324.             System.out.println("aprovado");
  325.         }
  326.  
  327. JOGOO
  328.  
  329.  
  330.   Random rd= new Random();
  331.         int cpu = rd.nextInt(3);
  332.         Scanner s= new Scanner (System.in);
  333.  
  334.         System.out.println("Escolha entre 0=pedra 1=tesoura 2=papel:");
  335.         int j = s.nextInt();
  336.        
  337.         if (cpu==j)
  338.         {
  339.             System.out.println("Empate:"+cpu+","+j);
  340.         }
  341.        
  342.         else if(cpu==0 && j==1)
  343.         {        
  344.           System.out.println("perdeu:"+cpu+","+j);
  345.         }
  346.          
  347.         else if (cpu==0 && j==2)
  348.          {
  349.          System.out.println("You win!:papel:"+cpu+","+j);
  350.  
  351.          }  
  352.          
  353.          
  354.         else if(cpu==1 && j==2)
  355.         {
  356.          System.out.println("You loose!:tesoura:"+cpu+","+j);
  357.  
  358.          }
  359.    
  360.          if (cpu==2 && j==0)
  361.          {
  362.          System.out.println("You loose!:pedra:"+cpu+","+j);
  363.    
  364.          }
  365.          else if
  366.                   (cpu==2 && j==1)
  367.          {
  368.          
  369.          System.out.println("You win:tesoura:"+cpu+","+j);
  370.  
  371.          }
  372.  
  373.  
  374. http://www.codejava.net/java-se/swing/jframe-basic-tutorial-and-examples
  375.  
  376.  
  377. for (int n=1;n<=10;n++)
  378.  
  379. {
  380.         int nu;
  381.        
  382.         Scanner s= new Scanner (System.in);
  383.                
  384.         for (int n = 1; n <= 5; n++) {
  385.  
  386.             System.out.println("numero");
  387.             nu = s.nextInt();
  388.  
  389.             if (nu % 2 == 0) {
  390.                 System.out.println("valor par");
  391.             } else if (nu % 2 != 0) {
  392.                 System.out.println("valor impar");
  393.             }
  394. for (String novaString : arrayDeStrings)
  395. https://www.javacodegeeks.com/2015/06/java-programming-tips-best-practices-beginners.html
  396.  
  397.  
  398.   int l1,l2,l3;
  399.        
  400.        Scanner s= new Scanner (System.in);
  401.        
  402.         System.out.println("digite 1");
  403.         l1 = s.nextInt();
  404.        
  405.            
  406.         System.out.println("digite 2");
  407.         l2 = s.nextInt();
  408.        
  409.            
  410.         System.out.println("digite 3 ");
  411.         l3 = s.nextInt();
  412.        
  413.         if (l1 == l2 && l2==l3)
  414.         {
  415.             System.out.println("equilatero");
  416.         }
  417.         else if (l1 == l2 && l2 != l3 || l1 != l2 && l2 == l3 || l1 != l3 && l2 == l3 )
  418.         {
  419.             System.out.println("isoceles");
  420.         }
  421.         else if  (l1 != l2 && l2 != l3)
  422.                     {
  423.                         System.out.println("escaleno");
  424.                     }
  425.  
  426.  
  427.  
  428. LACOS DE REPETICAO
  429. for
  430. Sintaxe
  431. for(inicio,fim,incremento)
  432. {
  433. //codigos
  434. }
  435. int i,n,r;
  436. Scanner sc=new Scanner (System.in);
  437. System.out.println("Escolha entre 1 e 10:");
  438. n=sc.nextint();
  439. System.out.println("taboada do"+n);
  440. system.out.println("................")
  441.  
  442.  
  443.  
  444. FACA UM PROGRAMA ONDE O COMPUTADOR SORTEIA UM NUMERO ENTRE 1 = 10 E NA SEQUENCIA O USUARIO
  445. TERA 3 TENTATIVAS PARA ACERTAR O NUMERO SORTEADO
  446.  
  447.     int nr = 0,n;
  448.     Scanner s=new Scanner (System.in);
  449.    
  450.     Random rd= new Random();
  451.      n = rd.nextInt(10);
  452.    
  453.    
  454.     {
  455.         System.out.println("digite numero de a 10");
  456.         n = s.nextInt();
  457.     }
  458.    
  459.     if (n == nr)
  460.     {
  461.         System.out.println("VOCE ACERTOU");
  462.     }
  463.     else
  464.     {
  465. for (int n1 = 1; n1 < 3; n1++)
  466.  
  467. {
  468.    
  469.  System.out.println("voce erroru");
  470.  
  471.  System.out.println("outro numero");
  472.   n = s.nextInt();
  473.  
  474. }
  475. }
  476. if (n != nr)
  477. {
  478.  System.out.println("acabou as chances");
  479.   System.out.println("acabou as chances" + nr + "  ");
  480. }
  481.  
  482.  
  483.    
  484.     }}
  485.  
  486.  
  487.  
  488.  
  489.  
  490. PECA PARA USUARIO INFORMAR UM NUMERO E INFORME QUAIS NUMEROS ENTRE 1A100
  491. SAO DIVISIVEIS POR ERLE
  492.  
  493.        
  494.         int n,r;
  495.         Scanner s=new Scanner (System.in);
  496.        
  497.         System.out.println("informe um numero");
  498.         n = s.nextInt();
  499.        
  500.         for (int n1 = 1; n1 <= 100; n1++)
  501.         {
  502.             r = n1 % n;
  503.             if (r == 0)
  504.             {
  505.                 System.out.println("numero " + n1 + " e divisivel " +  r + "");
  506.             }
  507.            
  508.        
  509.        
  510.         // TODO code application logic here
  511.     }
  512.    
  513.     }}
  514.  
  515.  
  516.  
  517.     {
  518.             int n1,n2,i;
  519.  
  520.             Console.WriteLine("digite nujmer");
  521.             n1 = int.Parse(Console.ReadLine());
  522.            
  523.             Console.WriteLine("digite nujmer");
  524.             n2 = int.Parse(Console.ReadLine());
  525.  
  526.             for (i = 1; n1 <= 100; n2--)
  527.            
  528.             {
  529.                
  530.                 if (n1 % 2 == 1)
  531.  
  532.                     Console.WriteLine("numeros pares sao " + n1 + "" + n2   );
  533.             }
  534.             Console.ReadKey();
  535.  
  536.  
  537.  
  538.  
  539.  
  540.         }
  541.     }
  542. }
  543.  
  544.  
  545.  
  546.     Faça uma App Java que leia 10 números inteiros e verifique qual é o menor e qual é o maior número.
  547.     Faça um App Java que leia 5 notas de um aluno e exiba a média.
  548.     Determine a quantidade de homens e mulheres (separadamente) que são maiores de idade, baseado numa lista de 10 pessoas.
  549.     Desenhe a seguinte pirâmide de números. O usuário determina a quantidade de
  550.     linhas.
  551.  
  552.  
  553. 01
  554. 02 02
  555. 03 03 03
  556. 04 04 04 04
  557. 05 05 05 05 05
  558. 06 06 06 06 06 06
  559. 07 07 07 07 07 07 07
  560. 08 08 08 08 08 08 08 08
  561. 09 09 09 09 09 09 09 09 09
  562. 10 10 10 10 10 10 10 10 10 10
  563. 11 11 11 11 11 11 11 11 11 11 11
  564.  
  565.  
  566.       int n,nota1 = 0,media = 0;
  567.       Scanner s= new Scanner (System.in);
  568.         for ( n = 1; n <= 5; n++){
  569.          
  570.         System.out.println("digite valor 1");
  571.         nota1 = s.nextInt();
  572.        
  573.         }
  574.         media = (nota1)/5;
  575.        
  576.        
  577.        
  578.         System.out.println("media e:"+ media);// TODO code application logic here
  579.     }
  580.    
  581. }
  582.  
  583.  
  584.    int n, mn;
  585.             Scanner s=new Scanner (System.in);
  586.             System.out.println("digite numero");
  587.             mn = s.nextInt();
  588.             for (int x = 1; x < 15; x++)
  589.             {
  590.                 System.out.println("digite numero");
  591.                 n = s.nextInt();
  592.  
  593.                 if (n > mn)
  594.                 {
  595.                     mn = n;
  596.                 }
  597.             }
  598.           System.out.println("maior numero digita e :" + mn);
  599.         }
  600.     }
  601.  
  602. ---------------
  603.  
  604. {
  605.    
  606.     // vamos fazer a leitura usando a classe Scanner
  607.     Scanner entrada = new Scanner(System.in);
  608.      
  609.     // vamos solicitar a quantidade de linhas
  610.     System.out.print("Informe a quantidade de linhas: ");
  611.     int numLinhas = Integer.parseInt(entrada.nextLine());
  612.    
  613.     // não queremos aceitar quantidades de linhas menores que 1 ou maiores que 12
  614.     if((numLinhas < 1) || (numLinhas > 12)){
  615.       System.out.println("O número de linhas deve estar entre 1 e 12");
  616.       System.exit(0);
  617.     }
  618.    
  619.     // este laço externo controla as linhas
  620.     System.out.println();
  621.     for(int linha = 1; linha <= numLinhas; linha++){
  622.       // este laço gera os espaços antes de cada número nas linhas da pirâmide
  623.       for (int coluna = 1; coluna <= (numLinhas - linha); coluna++){
  624.         System.out.print("   "); // três espaços aqui
  625.       }
  626.      
  627.       // aqui nós exibimos os números de cada linha do lado esquerdo da pirâmide, até o centro
  628.       for(int i = linha; i >= 1; i--){
  629.         // o número da linha é maior ou igual a 10? se for colocamos um espaço antes do número
  630.         if(i >= 10){
  631.           System.out.print(" " + i);  
  632.         }
  633.         else{ // o número da linha é menor que 10? vamos colocar dois espaços antes do número
  634.           System.out.print("  " + i);  
  635.         }
  636.       }
  637.      
  638.       // e finalmente exibimos os números de cada linha no lado direito da pirâmide
  639.       for (int i = 2; i <= linha; i++){
  640.         // o número da linha é maior ou igual a 10? se for colocamos um espaço antes do número
  641.         if(i >= 10){
  642.           System.out.print(" " + i);  
  643.         }
  644.         else{ // o número da linha é menor que 10? vamos colocar dois espaços antes do número
  645.           System.out.print("  " + i);  
  646.         }
  647.       }
  648.      
  649.       // gera uma nova linha
  650.       System.out.println();
  651.     }
  652.    
  653.     System.out.println();
  654.   }
  655.     }
  656.  
  657.  
  658.  int i, numero, maior=0,menor=1000000000;
  659.        
  660.             Scanner s=new Scanner (System.in);
  661.             System.out.println("digite numero");
  662.             numero = s.nextInt();
  663.            
  664.             for ( i = 1; i < 5; i++){
  665.                
  666.             System.out.println("digite numero");
  667.             numero = s.nextInt();
  668.             if (numero>maior)
  669.             {
  670.                 maior=numero;
  671.             }
  672.             if (numero<menor)
  673.             {
  674.                menor=numero;
  675.             }
  676.                
  677.             }
  678.             System.out.println("o maior e "  +maior+ ",e o menor e:" +menor );
  679.                
  680.     }}
  681.  
  682.  
  683.  
  684. http://javauniesp.blogspot.com.br/2012/04/lista-2.html
  685.  
  686.  
  687.  
  688.  {
  689.        int i, idade,sexo,cont=1,masc=0,fem=0;
  690.        Scanner s=new Scanner (System.in);
  691.        
  692.        for  ( i = 1; i < 5; i++)
  693.        {
  694.            System.out.println("digite seu sexo 1=FEMININO,2=MASCULINO");
  695.            sexo = s.nextInt();
  696.            if ((sexo!=1)&&(sexo!=2))
  697.            {
  698.                System.out.println("opcao invalida");  
  699.            }
  700.            System.out.println("digite sua idade");
  701.            idade = s.nextInt();
  702.            if ((sexo==1)&&(idade>=18))
  703.                
  704.            {
  705.                fem++;
  706.            }
  707.            else if ((sexo==2)&&(idade>=18))
  708.            {
  709.                masc++;
  710.            }
  711.            cont++;
  712.     }
  713.         System.out.println("maiores de idade feminio sao:" +fem);
  714.         System.out.println("maiores de idade masculino sao:" +masc);
  715.    
  716.     }
  717. }
  718.  
  719.         for(int c = 1; c <= 11; c++)//n linhas
  720. {
  721.  
  722. for(int i = 0; i < c; i ++)//lateral
  723.    
  724. {
  725. System.out.print("0");
  726. System.out.print("1");
  727. }
  728. System.out.println();
  729.  
  730. }
  731. }
  732. }
  733. 01)Faça uma APP Java que exiba 10 números sorteados.
  734.  
  735. 02)Faça um jogo em que o usuário tenha que adivinhar um número sorteado entre 0 e 10 em 3 tentativas.
  736.  
  737.  {
  738.       int n, i = 0;
  739.  
  740.         Scanner s = new Scanner(System.in);
  741.         Random rd = new Random();
  742.  
  743.         for (i = 0; i <= 60; i++) { // de 1 a 60
  744.         }
  745.  
  746.         {
  747.             for (n = 0; n <= 10; n++) {//10 numeros
  748.  
  749.  
  750.                 System.out.println(rd.nextInt(60));
  751.  
  752.             }
  753.         }
  754.     }
  755. }
  756.  
  757.  
  758. PIRAMIDE
  759.       int n,a,b;
  760.               Scanner cal=new Scanner(System.in);
  761.               System.out.println("Ingrese un numero");
  762.               n=cal.nextInt();
  763.                
  764.                for(a=1; a<=n; a++){
  765.                    for(b=1; b<=a; b++){
  766.                        System.out.print(a);
  767.                    }
  768.                    System.out.println(" ");
  769.                 }
  770.                      for(a=n-1;a<=1;a--){
  771.                      for(b=1;b<=a;b++){
  772.                           System.out.print(a);
  773. }
  774.                 System.out.println(" ");
  775. }
  776. }
  777. }
  778.  
  779. { {
  780.        
  781.        List<Integer> possiveis = new ArrayList<Integer>();
  782.        //Inclui os 60 números possíveis
  783.        for (int i = 0; i < 60; i++) {
  784.            possiveis.add(i);
  785.        }
  786.        //Embaralha a lista de números
  787.        Collections.shuffle(possiveis);
  788.  
  789.        //Os sorteados agora são os 6 primeiros
  790.        for (int i = 0; i < 10; i++) {
  791.            System.out.println(possiveis.get(i));
  792.        }
  793.     }
  794. }
  795.        
  796.     }
  797.  
  798.  
  799. {
  800.         int i = 0, n = 0, maq = 0;
  801.  
  802.         Random rd = new Random();
  803.         Scanner s = new Scanner(System.in);
  804.         maq = rd.nextInt(9);
  805.  
  806.         for (i = 0; i <= 3; i++)
  807.        
  808.         {
  809.             System.out.println("digite um numero");
  810.             n = s.nextInt();
  811.  
  812.             if (n == maq);
  813.             {
  814.  
  815.                 System.out.println("acertou");
  816.             }
  817.             if (n != maq) {
  818.             }
  819.             System.out.println("errou");
  820.         }
  821.     }
  822. }
  823.  
  824. PIRAMIDE
  825. {
  826.         int n, a, b;
  827.         Scanner c = new Scanner(System.in);
  828.  
  829.         System.out.println("digite numero");
  830.         n = c.nextInt();
  831.  
  832.         for (a = 1; a <= n; a++)
  833.                   {
  834.             if (a <= 9) {
  835.  
  836.                 for (b = 1; b <= a; b++) {
  837.  
  838.                     System.out.print("0" + a +"  ");
  839.                 }
  840.                 System.out.print("\n");
  841.             }
  842.             if (a > 9) {
  843.  
  844.                 for (b = 1; b <= a; b++) {
  845.  
  846.                     System.out.print(a +"  ");
  847.                 }
  848.                 System.out.print("\n");
  849.             }
  850.  
  851.         }
  852.     }
  853. }
  854.  
  855.  
  856. {
  857.        
  858.         Scanner sc = new Scanner(System.in);
  859.        
  860.         int i, ele, pre, gov, x = 0, y = 0, b = 0, c = 0, r = 0, n = 0, m = 0,prep1=0,prep2=0,prep3=0,govp1=0,govp2=0;
  861.         for (i = 1; i <= 10; i++) {
  862.             System.out.println(" numero do titulo");
  863.             ele = sc.nextInt();
  864.             System.out.println(" seu voto para presidente  1-tulio 2-tuca 3-julio");
  865.             pre = sc.nextInt();
  866.             System.out.println(" seu voto para governador  1-carlo 2-eneias");
  867.             gov = sc.nextInt();
  868.             if (pre == 1) {
  869.                 x++;
  870.                   prep1=(y/5)*100;
  871.             }
  872.             if (pre == 2) {
  873.                 y++;
  874.                
  875.                 prep2=(y/5)*100;
  876.                
  877.             }
  878.             if (pre == 3) {
  879.                 b++;
  880.                  prep3=(y/5)*100;
  881.             }
  882.             if (gov == 1) {
  883.                 c++;
  884.                 govp1=(c/5)*100;
  885.             }
  886.             if (gov == 2) {
  887.                 r++;
  888.                 govp2=(c/5)*100;
  889.             }
  890.             if (pre > 3) {
  891.                 n++;
  892.             }
  893.             if (gov > 2) {
  894.                 m++;
  895.             }
  896.             if (x > y & x > b) {
  897.             }
  898.  
  899.         }
  900.         //maior votacao//////////////////////
  901.         if (x > y & x > b) {
  902.             System.out.println("maior votação para presidente  tulio " + x);
  903.         }
  904.  
  905.         if (y > x & y > b) {
  906.  
  907.             System.out.println("maior votação para presidente  tuca " + y);
  908.         }
  909.         if (b > x & b > y) {
  910.             System.out.println(" a maior votação para presidente  julio " + b);
  911.         }
  912.         if (c > r) {
  913.             System.out.println(" a maior votação para governador carlo " + c);
  914.         }
  915.         if (r > c) {
  916.             System.out.println(" a maior vot~ção para governador  eneias " + r);
  917.         }
  918.         //menor votacao///////////////////
  919.         if (x < y & x < b) {
  920.             System.out.println("menor votação para presidente  tulio " + x);
  921.         }
  922.  
  923.         if (y < x & y < b) {
  924.  
  925.             System.out.println("menor votação para presidente  tuca " + y);
  926.         }
  927.         if (b < x & b < y) {
  928.             System.out.println(" a menor votação para presidente  julio " + b);
  929.         }
  930.         if (c < r) {
  931.             System.out.println(" a menor votação para governador carlo " + c);
  932.         }
  933.         if (r < c) {
  934.             System.out.println(" a menor votação para governador  eneias " + r);
  935.         }
  936.        
  937.        
  938.  
  939.         System.out.println("total de votos para presidente tulio " + x + " tuca " + y + " julio " + b + " e  votos nulo ou brancos são " + n);
  940.         System.out.println("  total de votos para cada governador e carlo " + c + " eneias " + r + " e votos nulos ou branco são" + m);
  941.         System.out.println("O percentual de presidente tulio :"+prep1+ "tuca"+prep2+ "julio"+prep3 );
  942.         System.out.println("O percentual de governador carlo :"+govp1+ "eneias"+govp2  );
  943.     }}
  944.  
  945.  
  946.  
  947.  
  948. lacos de repticao
  949. while(condicao)
  950. {
  951. enquanto condicao dor verdadeira executa o codigo entre as chaves
  952. }
  953.  
  954. int num,resto;
  955. while(num!=0)
  956. {
  957. system.out.print("digite um numero");
  958. num=sc.nextInt();
  959. resto=num%2;
  960. if(resto==0)
  961. {
  962. system.out.print("par");
  963. }
  964. else
  965. {
  966. system.out.print("impar");
  967. }
  968. }
  969.  
  970.  
  971. double s = 0, cont = 0, cont1 = 0;
  972.             int i=0;
  973.  
  974.            while (i<5)
  975.             {
  976.                 Console.WriteLine("digite salsrio");
  977.                 s = double.Parse(Console.ReadLine());
  978.  
  979.                 if (s > 1600)
  980.                 {
  981.                     cont++;
  982.                 }
  983.                 if (s < 1600)
  984.                 {
  985.                     cont1++;
  986.                 }
  987.  
  988.             }
  989.             Console.WriteLine("quantidade maiores que 1600 {0} quantidade menores que 1600 {1}", cont++, cont1++);
  990.             Console.ReadKey();
  991.         }
  992.     }
  993. }
  994.  
  995.  
  996.  
  997.     public static void main(String[] args){
  998.      float maior,
  999.            num;
  1000.      int count=2;
  1001.      Scanner entrada = new Scanner(System.in);
  1002.  
  1003.      System.out.print("Numero 1: ");
  1004.      num = entrada.nextFloat();
  1005.      maior = num;
  1006.  
  1007.      while(count <= 10){
  1008.       System.out.print("Numero " + count + ": ");
  1009.       num = entrada.nextFloat();
  1010.  
  1011.       if(num > maior){
  1012.        maior = num;
  1013.       }
  1014.  
  1015.       count++;
  1016.      }
  1017.  
  1018.      System.out.println("O maior numero digitado é: "+maior);
  1019.  
  1020.     }
  1021. }
  1022.  
  1023. //////////////////////////////////////////////////////////////////////////////////
  1024.  float numero, MaiorNumero=0;
  1025.                  int count = 1;
  1026.        
  1027.         Scanner sc = new Scanner(System.in);
  1028.        
  1029.       //  System.out.println("Número 1: ");
  1030.        // numero = sc.nextFloat();
  1031.        // numero = MaiorNumero;
  1032.         do
  1033.         {
  1034.         System.out.println("Entre com Número  nº" + count + ":");
  1035.         numero = sc.nextFloat();
  1036.        
  1037.         if(numero > MaiorNumero){
  1038.             MaiorNumero = numero;
  1039.         }
  1040.        
  1041.         count++;    
  1042.         }
  1043.         while(count <= 10);
  1044.        
  1045.        
  1046.         System.out.println("O maior número digitado foi: " + MaiorNumero);
  1047.  
  1048. EXER 2
  1049.  
  1050. {
  1051.                int dS = 1;    
  1052.                
  1053.             Scanner s = new Scanner (System.in);
  1054.            
  1055.             System.out.println("digite um numero");
  1056.             dS = s.nextInt();
  1057.            
  1058.            
  1059.            
  1060.                 switch (dS){
  1061.                    
  1062.             case 1:
  1063.                 System.out.println("Domingo");
  1064.                 break;
  1065.             case 2:
  1066.                 System.out.println("Segunda-feira");
  1067.                 break;
  1068.             case 3:
  1069.                 System.out.println("Terça-feira");
  1070.                 break;
  1071.             case 4:
  1072.                 System.out.println("Quarta-feira");
  1073.                 break;
  1074.             case 5:
  1075.                 System.out.println("Quinta-feira");
  1076.                 break;
  1077.             case 6:
  1078.                 System.out.println("Sexta-feira");
  1079.                 break;
  1080.             case 7:
  1081.                 System.out.println("Sábado");
  1082.                 break;
  1083.             default:
  1084.                 System.out.println("Este não é um dia válido!");
  1085.         }
  1086.     }
  1087. }
  1088.  
  1089. EXER 4
  1090.  
  1091. {
  1092.                int dS = 1,i=0;    
  1093.                
  1094.             Scanner s = new Scanner (System.in);
  1095.            
  1096.             System.out.println("digite um numero");
  1097.             dS = s.nextInt();
  1098.            
  1099.             for (i = 0; i <= 3; i++){
  1100.                
  1101.                
  1102.                 System.out.println(","+i);
  1103.                
  1104.            
  1105.                
  1106.         }
  1107.     }
  1108. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement