Questions tagged as 'java'

2
answers

Code always falls in the same if

Why is the "old ()" method only returns the "Are you new" answer, regardless of the age you entered? What is going wrong? public class Pessoa{ private int idade; public Pessoa(int idadeInicial) { if(idadeInicial<0){ idade = 0...
asked by 23.08.2017 / 04:51
1
answer

Problem with string alignment [duplicate]

I have a problem with my Android project that I can not resolve. I have a series of strings that are summed to form a larger string as in the following example: String teste1 = "O.P. Processo Célula"; String teste2...
asked by 28.01.2014 / 15:12
3
answers

Instanceof with List in JAVA [closed]

I declare a method that gets a List of type Object . However, when I try to recognize it with instanceof it gives error. I tried to do a casting but it still gave an error and I could not identify where the problem is in my c...
asked by 18.09.2017 / 14:44
3
answers

system.out.println (""); syntax error

I started learning Java with Elipse and I am learning more and more. But I came across a situation: when I use system.out.println(""); , Eclipse "says" that there is a syntax error and I have no idea what that can be. I've tried using sho...
asked by 12.05.2016 / 00:44
2
answers

Create a program that is usable in Windows

I am a student of programming, still in the first year of my course. So far I have studied Java , C , Haskell and Script Shell . I am fairly functional in Java and C . I know how to write code, compile an...
asked by 23.05.2018 / 18:24
2
answers

How to calculate the time difference? [closed]

' package layout; import android.os.Bundle; import android.support.design.widget.FloatingActionButton; import android.support.v4.app.Fragment; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import...
asked by 13.12.2016 / 18:30
2
answers

Why is this algorithm in Java not running? [closed]

import java.util.Scanner; public class CalculoSalarioLiquido { public static void main (String args []) { System.out.println("Programa para calcular o Salário Líquido: "); System.out.println("Escreva o Número de Horas Trab...
asked by 17.07.2016 / 00:25
1
answer

List the 10 best selling products

I need to list the 10 best selling products in a table using Hibernate. The item_venda table has the following columns: quantity product_id community_value value_sub_Total
asked by 03.09.2016 / 16:36
2
answers

Problems creating class and method

I have the following code: public class String verifyWord(String wordChosen, Scanner reader){ //linha 1 boolean answeredCorrectly = false; int tries = 1; String wordChosen = random.nextInt(); String answer = wordChosen; wh...
asked by 26.09.2017 / 16:48
2
answers

How to create Exception [duplicate]

I'm trying to make an Exception but I can not. I would like your help to solve this problem. I'm from yesterday trying to validate a field but this is difficult ... Thanks in advance! In case this field would be named if it were null! public...
asked by 15.05.2015 / 21:04