WC 1M Post Challenge - You Ready?!

sahib lopez

New member
Apr 29, 2013
33,966
0
0
Visit site
Re: WC 150K Post Challenge - You Ready?!

any help would do . I looked in my book and examples and I just cant seem to get it to work :unhappysweat:
 

sahib lopez

New member
Apr 29, 2013
33,966
0
0
Visit site
Re: WC 150K Post Challenge - You Ready?!

So, Donald Trump is hanging around still in the US Presidential race. The longer he lingers, the more viable his campaign "appears" to be in the eyes of some voters. While I'd expect the American voter to pay attention and steer clear away from his message, the American voter is one of the most unpredictable forces on earth. At least we'll know what our fate potentially could be by the spring of next year, once both parties select their presidential nominee.

Posted approved via Moto Maxx
in my opinion I hope I'm not stirring the pot or anything but trump is well reminding me of a certain political figure in the 1940s. scary stuff
 

sahib lopez

New member
Apr 29, 2013
33,966
0
0
Visit site
Re: WC 150K Post Challenge - You Ready?!

Looks like I have this small corner of the big, bad Internet all to myself...ah, the possibilities of mischief I could get into are endless...

Posted approved via Moto Maxx
man I was hopping I would get time today to relive my glory days of the most prolific poster in this thread ;P
 

Laura Knotek

Retired Moderator
Mar 31, 2012
29,394
20
38
Visit site
Re: WC 150K Post Challenge - You Ready?!

I'm just waiting for 6.0 to drop on both my Maxx and Z3. Both could certainly use it, albeit for very different reasons...

Posted approved via Moto Maxx

Marshmallow is incoming for Sprint and Verizon users on the MXPE. I saw some people on AT&T/T-Mobile who got it by turning off their devices, pulling their SIM and rebooting, but no luck for me.
Screenshot_2015-12-09-00-09-42.jpg

Screenshot_2015-12-09-00-10-19.jpg
 

N_LaRUE

New member
Apr 3, 2013
28,641
0
0
Visit site
Re: WC 150K Post Challenge - You Ready?!

so this is mainly for Azcruz or anyone who can steer me in the right direction. in my code after the user inputs the number and gets the outcome, I want to give them an option to return to the options menu place thing. I cant seem to find it or think of a way. I hope I'm allowed to post it :p. I'm using my own methods to find. my problem is all the way in the bottom and in cyan
public class ProgrammingAssignment4 {
public static void printGreetings(){
System.out.println("what do you want to convert today!");
System.out.println("chose a number between 1 - 7");
}
// the formula to convert fahrenhiet to celcius
public static double ConvertFtoC( double tempF ) {
double Celsius = (tempF - 32) * 5/9.0;

return Celsius;


public static void main(String[] args) {
Scanner scnr = new Scanner(System.in);
String[] tempNames;
tempNames = new String[7];
double tempC;
double tempF;
double tempK;
char input;

// greetings
printGreetings();
tempNames[0]=" 1: Fahrenheit to Celsius";
tempNames[1] = " 2: Celsius to Fahrenheit";
tempNames[2] = " 3 Kelvin to Fahrenheit ";
tempNames[3] = " 4:Fahrenheit to Kelvin";
tempNames[4] = " 5: Calsius to Kelvin " ;
tempNames[5] = " 6: Kelvin To Celsius ";
tempNames[6] = " 7: Nothing";

System.out.println(Arrays.toString(tempNames));


input = scnr.next().charAt(0);
if(input == '1') {
//Converting Fahrenheit to Celsius
System.out.println(" enter the temperature in Fahrenheit");
tempF = scnr.nextDouble();
tempC = ConvertFtoC(tempF);
System.out.println("the temp is :" + tempC +" C ");
if (tempC >= 100) {
System.out.println(" thats pretty hot thats Boiling point for water"
+ " ");
} else if (tempC < 99 && tempC >=29){
System.out.println(" that is Sweaty hot weather ");
} else if (tempC < 29 &&tempC >= 23){
System.out.println("thats T-shirt and shorts temp");
} else if ( tempC < 23 && tempC >=20) {
System.out.println("that is average room tempurature ");
} else if ( tempC < 20 && tempC >=14){
System.out.println(" that is Long sleeve shirt and Pants Tempurature"
+ " ");
} else if ( tempC < 14 && tempC >= 9){
System.out.println("that is bring out the thick jacket if you wanna "
+ "stay warm");
} else if ( tempC < 9 && tempC >=-1){
System.out.println(" that is freezing as in water freezes at this "
+ "temp ");
} else if ( tempC < -1 && tempC >= -100){
System.out.println(" so cold that you may want to reconsider going"
+ " outside especially with kids ");
} System.out.println("do you wannt to convert more temps?"); // right here is where I want an option to return back
input = scnr.next().charAt(0);

This may help you - How Tell The Program To Loop Or Restart - Java | Dream.In.Code

Also don't use cyan text, it's virtually impossible to read on a white background.
 

Rose640

New member
Jul 20, 2015
3,891
0
0
Visit site
I saw Google launched that Pixel C thing. You know, the one thing I dislike the most on my Z3 Tablet Compact is how ****ty the multitasking is. Windows is such a champ here it's not even funny. I'd really love a dual window/multi-window support on Android tablets outside of Samsung. Until then, they make Android tablets not as useful as they could be...

Posted approved via Moto Maxx

Well there's that Chuwi thing with both Android and Windows preinstalled. Kit Kat and 8.1 i think but it is Windows 10 ready.

And it's really cheap, around 150$.
 

Rose640

New member
Jul 20, 2015
3,891
0
0
Visit site
Poeate vitam nautarum laudant.

Populi Iugoslaviae potentiam patriae augeant.

Medicum perriculi non terrant.

I'm getting better at this, yay.
 

Rose640

New member
Jul 20, 2015
3,891
0
0
Visit site
Re: WC 150K Post Challenge - You Ready?!

Can anyone recommend me a good pair of earphones, up to 20$ from ebay or amazon? And also i'm trying to find something over 100db, so that would be great.
 

MSFTisMIA

New member
Dec 20, 2012
23,952
0
0
Visit site
Re: WC 150K Post Challenge - You Ready?!

in my opinion I hope I'm not stirring the pot or anything but trump is well reminding me of a certain political figure in the 1940s. scary stuff

Churchill? FDR?

If you're thinking more of the guy in charge of the USSR or Germany at the time, you'd have to start from the 1930s to be more accurate...

Approved by Z3 Tablet Compact!
 

worldspy99

New member
Nov 10, 2013
21,301
0
0
Visit site
Re: WC 150K Post Challenge - You Ready?!

Marshmallow is incoming for Sprint and Verizon users on the MXPE. I saw some people on AT&T/T-Mobile who got it by turning off their devices, pulling their SIM and rebooting, but no luck for me.
View attachment 118577

View attachment 118578
The first MXPE that I got did receive it. I used that phone on TMO but my colleague is using it on VZW. He got the update yesterday.
 

worldspy99

New member
Nov 10, 2013
21,301
0
0
Visit site

MSFTisMIA

New member
Dec 20, 2012
23,952
0
0
Visit site
Re: WC 150K Post Challenge - You Ready?!

I see that the 5X is discounted to being $330 for the 16GB model and $379 for the 32GB. Now this seems a bit more appealing. Still won't buy it, but interesting nonetheless...

Approved by Z3 Tablet Compact!
 

worldspy99

New member
Nov 10, 2013
21,301
0
0
Visit site
Re: WC 150K Post Challenge - You Ready?!

I see that the 5X is discounted to being $330 for the 16GB model and $379 for the 32GB. Now this seems a bit more appealing. Still won't buy it, but interesting nonetheless...

Approved by Z3 Tablet Compact!
On Cyber Monday it was $299 and $349 for 16 and 32GB models respectively.
 

Members online

Forum statistics

Threads
322,908
Messages
2,242,875
Members
428,004
Latest member
hetb