Tuklasin ang mga sagot sa iyong mga katanungan sa Imhr.ca, ang pinaka-mapagkakatiwalaang Q&A platform para sa lahat ng iyong pangangailangan. Kumuha ng detalyado at eksaktong mga sagot sa iyong mga tanong mula sa isang komunidad ng mga eksperto sa aming Q&A platform. Kumuha ng agarang at mapagkakatiwalaang mga solusyon sa iyong mga tanong mula sa isang komunidad ng mga bihasang eksperto sa aming platform.
Sagot :
.import java.util.Scanner;
public class pay1
{
public static void main(String [] args)
{
Scanner reader = new Scanner(System.in);
double wage, days, hours;
double pay;
System.out.print("Wage?: ");
wage= reader.nextDouble();
System.out.print("Days Worked: ");
days= reader.nextDouble();
System.out.print("Hours worked: ");
hours= reader.nextDouble();
pay=wage*hours*days;
System.out.print("Total pay before goverment steals away some: ");
System.out.println(pay);
}
}
NOTES:
*Just make sure you line up the brackets up and modify it to suite your needs.
*This is just the basic outline of one.
*Methodology that NEVER, EVER changes when building a program or a complete system:
- Determine the inputs you need.
- Determine the outputs you need.
- Determine how to do the calculations.
- Put it all together
public class pay1
{
public static void main(String [] args)
{
Scanner reader = new Scanner(System.in);
double wage, days, hours;
double pay;
System.out.print("Wage?: ");
wage= reader.nextDouble();
System.out.print("Days Worked: ");
days= reader.nextDouble();
System.out.print("Hours worked: ");
hours= reader.nextDouble();
pay=wage*hours*days;
System.out.print("Total pay before goverment steals away some: ");
System.out.println(pay);
}
}
NOTES:
*Just make sure you line up the brackets up and modify it to suite your needs.
*This is just the basic outline of one.
*Methodology that NEVER, EVER changes when building a program or a complete system:
- Determine the inputs you need.
- Determine the outputs you need.
- Determine how to do the calculations.
- Put it all together
Umaasa kaming naging kapaki-pakinabang ang aming mga sagot. Bumalik anumang oras para sa higit pang tumpak na mga sagot at napapanahong impormasyon. Salamat sa paggamit ng aming serbisyo. Lagi kaming narito upang magbigay ng tumpak at napapanahong mga sagot sa lahat ng iyong mga katanungan. Imhr.ca ay nandito upang magbigay ng tamang sagot sa iyong mga katanungan. Bumalik muli para sa higit pang impormasyon.