Int Variables And Printf In Java
Mar 22, 2014
I write the following statement:
int num1 = (int)( 1000 * ( generator.nextFloat() ) );
System.out.printf("%d", num1);
and I get an error!
The weirdest thing is that 'num1' does NOT show in variables window. How can it be?
View Replies
ADVERTISEMENT
Aug 4, 2014
I'm learning about the printf command, and when I have it, it is not letting me ad an input. Here is my quick little program:
import java.util.Scanner;
public class TestingPrintF {
public static void main(String[] args) {
// Create a Scanner
Scanner input = new Scanner(System.in);
[Code] ....
The first section works good, but when i move down to the second part it just automatically finishes without letting me enter a phrase.
View Replies
View Related
Feb 26, 2015
How i would convert this java code to display using the printf statement, with two decimal places to the right...here is the source code so far, but it has a few errors and needs to be reformated for printf
import java.util.Scanner; // scanner class
public class PROB3_CHAL15
{
public static void main(String[] args)
{
double checks =0,
totalfee =0,
fee = 10,
fee1 =.1,
fee2 = .08,
fee3 = .06,
fee4 = .04,
checkFee;
String input;
Scanner keyboard = new Scanner(System.in);
[code]...
View Replies
View Related
Sep 1, 2014
I have a program that I have created from scratch called Product and I also created a Tester program to test my theory. The only problem that I have is that I am getting an error with this statement System.out.printf statement. The statement needs to print out "Program [name = HP ENVY x360 TouchSmart, price = $xxxxxx". The error states that "The method printf(String, Object...) in the PrintStream is not applicable for the arguments (String, String, void).
Which tells me that it is referencing back to the class file where I have
public void applyDiscount(double percent) {
percent = price - (price * percent); //establishing the discount
}
The lines of code in my tester file are (partly displayed)
String formatString = "Product[name = %s, price = %.2f]";
System.out.printf(formatString, product.getName(), product.getPrice())
//user input the discount amount
System.out.println("Enter discount percentage [0 - 100]: %.2f ");
double discount = user_input.nextDouble();
System.out.printf(formatString, product.getName(), product.applyDiscount(discount)); //This is the line giving me an error.
}
View Replies
View Related
Sep 6, 2014
We're learning printf with JGrasp as the environment at the moment. Heres the problem.
I have a string as this:
String header1 = new String ("Caswell Catering and Convention Service");
as for the printf line, its this:
System.out.printf ("%-5s/n", header 1);
The output is right justified no matter the use of the "-" or without and I can't seem to find the correct thing to do to make it left justified.
View Replies
View Related
Nov 6, 2014
I have an output of three columns, Total Income | Tax Payable | Net Income... however to output this I have the following code:
System.out.println(" Total Income | Tax Payable | Net Income");
int i = 0;
for (i=0; i <=18; i++){
if(incomes[i] < 0){
break;
[Code] ....
And the format of it comes out as: Screen Shot 2014-11-06 at 22.50.25.jpg
I'm getting very OCD about the format and I know there is a printf function which would solve this, however I don't really know how to use this correctly and it just messes up when I try to use it.
View Replies
View Related
Mar 22, 2014
I need to print to 2 decimal places and I'm trying to use the printf method, but for some reason I keep getting an error. I've looked through my code, but unless I'm missing a small detail, it looks okay to me.
float sum = 0;
float avg = 0;
double[] rain = {0, 1.9, 1.5, 1.2, 1.1, 0.5, 0.03, 1.0};
//Calculate sum of rain.
for (int i = 1; i <= 7; i++) {
sum += rain[i];
[Code] ....
View Replies
View Related
Jan 11, 2014
you can also refer this link Local variables in java?Local variables in java?To meet temporary requirements of the programmers some times..we have to create variables inside method or bock or constructor such type of variables are called as Local Variables.
----> Local variables also known as stack variables or automatic variables or temporary variables
----> Local variables will be stored inside Stack.
-----> The local variables will be created while executing the block
in which we declared it and destroyed once the block completed. Hence the scope of local variables is exactly same as the block in which we declared it.
package com.javatask.in;
class A{
public static void main(String args[]){
int i=0; // Local variable
[code]....
View Replies
View Related
Apr 7, 2014
So like, in lua programming language you can do things like,
Array = {1, 2, 3, abc = 5, efg = {123, 456, 789, hij = {"tests","works!"}}, hij = true}
Array[1] = 5
Array[3] = true
Can you do atleast something like this in java or?
I would like to do this because if let's say I was making a game, I could define what tiles are passable and which are not and then their location or something, so like this:
//p (passable) stands for if possible to walk on
//c stands for tile image
t = ["grass.png","water.png","chest.png"]
Tiles = [
[p = false, c = t[1], x = 3, y = -2 ],
[p = true, c = t[0], x = 4, y = 3 ],
[Code] ....
Or something...
View Replies
View Related
Feb 28, 2015
I am unable to understand the meaning of this sentence "final reference variables must be initialized before the constructor completes.",What is trying to imply?
View Replies
View Related
Mar 29, 2015
I have An Issue With My Java Applet. Im Trying To Share My Variables With Another Class, But Its Not Working.
Class 1
package com.Tobysmith10.game.main;
import java.applet.Applet;
import java.awt.Graphics;
public class Game extends Applet{
public void init(){
setSize(850,480);
public void paint(Graphics g){
g.fillOval(x,y,20,20);
}
}
Class 2
package com.Tobysmith10.game.main;
import java.applet.Applet;
public class gameLoop extends Applet implements Runnable{
public int x, y;
public void run(){
while(true){
x = 100;
y = 100;
}
}
}
So im sharing the x and y variables with the Class 1 , but I get yellow lines under it and when i run the program, it crashes, how do I get class 1 to recognize the variables from class 2 ?
View Replies
View Related
Mar 15, 2015
okay so it says that java int short and byte variables are the same thing. They take whole numbers. But what is the point of byte and short to even exist if int covers it all? Is the short and byte just for fun?
View Replies
View Related
Jun 25, 2014
public class Ball {
private int a=show();
int b;
Ball()
{
b=20;
}
public static void main(String args[])throws Exception {
System.out.println(new Ball().a);
}
private int show()
{System.out.println(b);
return b;
}
}
I wanted to know when are the objects created ? when are they initialized? and how is show() getting called without any reference or "this" ?
View Replies
View Related
Mar 1, 2015
Does child class gets a copy of the methods and variables of parent class?
public class test1 {
public static void main(String a[]) {
Child c = new Child();
c.print();
[Code] ....
why is the output 1?
View Replies
View Related
Mar 30, 2014
Let's get it out of the way -- I'm stumped. On something that should be pretty simple to solve. Code follows.
public class Sum {
public static void main(String [] args) {
Double nSum = 0.0;
Double aDouble = 100.0;
for (int i = 0; i < 1000; i++){
nSum += 0.1;
[Code] ....
The output:
100.000000
100.000000
false
false
false
false
false
Process finished with exit code 0
I wrote another simple program and hardcoded the values: aDouble = 100.0; bDouble= 100.0000
Using aDouble.equals(bDouble) returns true, just as one would expect.
So what am I overlooking?
View Replies
View Related
Feb 25, 2014
Having two values
<c:set var="var1" scope="view" value="#{ID1}"/>
<c:set var="var2" scope="view" value="${ID2}" />
I tried in <c:if test=${var1 == var2}>
and eq also
above condition is not working. Both are same object. How to check?
View Replies
View Related
Apr 8, 2014
New to java/programming and i cant understand why the pen variable does not display the the correct value ... For example for input 1 ; 2 ; 3 ; 4 both variables will display 10 and i dont understand why pen does not have the value 6 .
import acm.program.*;
public class Chap4_ex12 extends ConsoleProgram {
public void run () {
int pen = 0;
int r = 1;
int sum = 0;
while (r !=SANTINEL) {
r = readInt(" ? ");
pen=sum ;
[code].....
View Replies
View Related
Jan 21, 2015
Variables defined in interface are public static and final so I was thinking that we should not be able to override the variables in a class thats implementing the interface. But when I am compiling the below class, it compiles fine and gives the correct values. but when I did disp.abhi = 35; it gives a compile error (cannot override final variable)
interface display{
int abhi = 10;
void displayName();
[code]....
View Replies
View Related
Jun 24, 2014
This is my first time working with C++ and I have put together this program and came up with two errors and I am unsure what it is wanting me to do. The errors I got are:
1>c:usersownerdocumentsvisual studio 2010projectsweek5week5passing_by_value.cpp(30): error C2064: term does not evaluate to a function taking 1 arguments
1>c:usersownerdocumentsvisual studio 2010projectsweek5week5passing_by_value.cpp(38): error C2064: term does not evaluate to a function taking 1 arguments
#include<iostream>
using std::cin;
using std::cout;
using std::endl;
//initialize arrays
int incr10(int* numa,int* numb);
[Code] ....
View Replies
View Related
Apr 13, 2014
I am new in this programming language, java. I have a problem after I set my path ";C:Program Files (x86)Javajdk1.7.0_51in". I made a simple program but an error occurred. Here's the screenshot.....
Attached image(s)
View Replies
View Related
Sep 23, 2014
I continuously get an error for lines 34, 36, and 37 saying that the variables may not have been initialized.
import java.util.Scanner;
import java.util.Random;
public class MathTutor {
public static void main(String[] args) {
Random r = new Random ();
Scanner input = new Scanner (System.in);
/*int min=1;
int max=10;*/
int num1,num2,operation;
int n1= r.nextInt((9+1)+1);
int n2= r.nextInt((9+1)+1);
operation= r.nextInt(3);
int correctAnswer;
int userAnswer;
[code]....
View Replies
View Related
Aug 30, 2014
Class 1:
view sourceprint?
1 public class one {
2 public static void main(String[] args){
3 int num = 0;
4 System.out.println(num);
5 two.change(num);
[Code] .....
This should print 0, then 1, but it prints 0, then 0. How do I make it print 0 then 1 with the same format?
View Replies
View Related
Apr 9, 2015
Let's say within a class I create a method that takes care of creating a java swing layout with labels, buttons etc.. then attach an action listener (inner class) for each button to change a respective label text. All I would need is that the action listener method can access and modify the label as needed.
Have read about static, protected, private, getters and setters but honestly bit confused about which structure should be adopted as a best practice. Global static protected variables for the labels along with private inner classes implementing ActionListeners believe will do the trick and will be able to access the labels but not convinced this is good practice.
View Replies
View Related
Apr 13, 2014
Is there any way to save variables while I'm using applet as single runnable .jar file?
For example if I start app first time some variable has value of 100. While using app it changes to 200. After closing app it disapear and next run gives me 100 again instead of 200. Is there any way to save that 200?
View Replies
View Related
Oct 4, 2014
I will like to add to the questions about constructors and its this. I have a class A with a constructor, i have a class B which initialize the constructor. also i have a class C which needs a variable in class A but doesn't need to initialize the constructor of A. the question how do i access the variable of class A without initializing the constructor.
View Replies
View Related
Aug 15, 2014
Does a variable have public access modifier? if we can use it within the class and outside of the class then can i access a public variable as follows??
class mo
{
void display() {
public int a=9;
System.out.println(a);
}
public static void main(String[] args) {
mo m=new mo();
m.display();
}
}
ERROR:
It shows 6 errors :-O.
Error 1. illegal start of the expression
2. class,interface, or enum expected
View Replies
View Related