Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~2K People Reached
Favorite Tags
Member Avatar for darylglenng

package numberpyramid; public class Numberpyramid { public static void main(String[] args) { int x = 9; for (int i =1; i<=x; i++){ for (int j =1; j<=x-i; j++) { System.out.print(" "); } for (int k=i; k>=1; k--) { System.out.print((k>=10)?+k:" "+k); } for(int k=2; k<=i; k++) { System.out.print((k>=10)?+k:" "+k); } System.out.println(" …

Member Avatar for pallav89
0
638
Member Avatar for darylglenng

<html> <title>application</title> <style type= text/css> <!-- style1 font-family: Arial, Helvetica, sans-serif; color: =00000000; } --> </style> <head><script language="JavaScript">{ function upper( field ) { field.value = field.value.toUppercase(); } <!-- function validate() { var good = true; with( document.theForm ) { if( id.value =="") { alert("Please provide a student number combination of …

Member Avatar for radhakrishna.p
0
211
Member Avatar for darylglenng

>what do i need to change if i want this program to convert decimal to hexadecimal thanks. package dectooctal; import java.util.Scanner; public class Dectooctal { public static void main(String[] args) { Scanner input = new Scanner(System.in); int broj; System.out.print("ENTER NUMBER THAT YOU WANT TO CONVERT TO OCTAL: "); broj = …

Member Avatar for deceptikon
0
431
Member Avatar for darylglenng

public class Numberpyramid { public static void main(String[] args) { int x = 9; for (int i =1; i<=x; i++){ for (int j =1; j<=x-i; j++) { System.out.print(" "); } for (int k=i; k>=1; k--) { System.out.print((k>=10)?+k:" "+k); } for(int k=2; k<=i; k++) { System.out.print((k>=10)?+k:" "+k); } System.out.println(" "); } …

Member Avatar for gusano79
0
189
Member Avatar for darylglenng

package wow; import java.io.PrintStream; import java.util.Arrays; import java.util.Collections; import java.util.List; import java.util.Scanner; public class Wow { String question; String answer; int correct=0, number=15; Wow[] quizBank = new Wow[15]; List<Wow> quizList = Arrays.asList(quizBank); public static void main(String[] args) { Wow bank = new Wow(); bank.bankList(); bank.askQuestion(); } //end main public void …

Member Avatar for M4trixSh4d0w
0
328
Member Avatar for darylglenng

>equal button wont work =( /* * To change this template, choose Tools | Templates * and open the template in the editor. */ package calculator; /** * * @author Gatongay Famiglia */ public class NewJFrame extends javax.swing.JFrame { double plusminus; double firstDouble; double secondDouble; double totalDouble; int plusClick; int …

Member Avatar for M4trixSh4d0w
0
316
Member Avatar for darylglenng
Member Avatar for JorgeM
0
275