Sort by

recency

|

1429 Discussions

|

  • + 0 comments

    java 15

    public static void main(String[] args) throws IOException {
            BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(System.in));
    
            int N = Integer.parseInt(bufferedReader.readLine().trim());
            
            for(int i=1; i<=10; i++){
                System.out.println(N + " x " + i + " = " + N*i);
            }
            
    
            bufferedReader.close();
        }
    
  • + 0 comments

    for (int i=1; i <=10; i++){ System.out.println(N+" x "+i+" = "+N*i); }

  • + 0 comments

    Here is Java Loops 1 problem solution - https://programmingoneonone.com/hackerrank-java-loops-i-problem-solution.html

  • + 0 comments
    for (int i=1; i <=10; i++){
                System.out.println(N+" x "+i+" = "+N*i);
            }
            
    
  • + 0 comments

    Java is one of those rare programming languages that has truly stood the test of time. Its “write once, run anywhere” philosophy, strong object-oriented design. Fairplay24.in Login