Sort by

recency

|

1213 Discussions

|

  • + 0 comments

    Python 3.x: for i in range(1, 11): print(f"{n} x {i} = {n*i}")

  • + 0 comments

    Python 3.x: for i in range(1, 11): print(f"{n} x {i} = {n*i}")

  • + 0 comments

    Day 5 -Loops

    for(let i = 1; i<=10; i++){

        let result = n*i;
        console.log(n + " x " + i + " = " + result);
    }
    
  • + 0 comments
    n=int(input())
    for i in range(1,11):
        print(f"{n} x {i} = {n*i}")
    
  • + 0 comments

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