WAP to print table of 15.
Answers
Answered by
0
Answer:
class prg
public static void main()
{
int a=15;
for( i=1 ; i<=a ; i++)
{
System.out.println(a*i) ;
}
}
if you liked this mark this as brainly list
Explanation:
Answered by
0
Answer:
#include <stdio.h> int main() { int n, i; printf("Enter an integer: "); scanf("%d", &n); for (i = 1; i <= 10; ++i) { printf("%d * %d = %d \n", n, i, n * i); } return 0;
Explanation:
Enter an integer: 9 9 * 1 = 9 9 * 2 = 18 9 * 3 = 27 9 * 4 = 36 9 * 5 = 45 9 * 6 = 54 9 * 7 = 63 9 * 8 = 72 9 * 9 = 81 9 * 10 = 90
Similar questions