No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
3 Posted Topics
Convert Number to Words Kindly Help me Explain this Line of Codes. Line by Line if possible. It was given to me by my friend. Hoping for Some Help. Thank you very much. [CODE] import java.util.Scanner; public class WordNumber{ public static void main(String[]args){ for(int i = 0; i < 20; …
[CODE] Scanner a = new Scanner(System.in); int s; s=a.nextInt(); if(s % 2 == 0) [/CODE]
How can I align it properly? got hard time. sorry i'm just new in Java [CODE] public class MultiplicationTable { public static void main(String[] args) { int[][] multtable = new int[11][11]; System.out.print("*"); for (int a=1;a<=10;a++) { System.out.print("\t"+a) ; } System.out.println(" "); for(int i=0; i<=10; i++) { // this loop is …
The End.
fox07