-
-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathPractice Problemes
61 lines (53 loc) · 1.59 KB
/
Practice Problemes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
package com.company;
public class cwh_25_practice_set_5 {
public static void main(String[] args) {
// Practice Problem 1
// int n = 4;
// for (int i=n; i>0; i--){
// for(int j=0;j<i;j++){
// System.out.print("*");
// }
// System.out.print("\n");
// }
// Practice Problem 2
// int sum=0;
// int n=4;
// for(int i=0;i<n;i++){
// sum = sum + (2*i);
// }
// System.out.print("Sum of even numbers is: ");
// System.out.println(sum);
// First 4 even numbers are - 0 2 4 6
// Practice Problem 3
// int n = 5;
// //for(int i=0; i<10; i++) - Goes from i=0 to i=9
// for(int i=1;i<=10;i++){
// System.out.printf("%d X %d = %d\n", n, i, n*i);
// }
// Practice Problem 4
// int n = 10;
// //for(int i=0; i<10; i++) - Goes from i=0 to i=9
// for(int i=10;i>=1;i--){
// System.out.printf("%d X %d = %d\n", n, i, n*i);
// }
// Practice Problem 6
// int n = 5;
// // What is factorial n = n * n-1 * n-2 ..... 1
// // 5! = 5*4*3*2*1 = 120
// int i = 1;
// int factorial = 1;
// while(i<=n){
// factorial *= i;
// i++;
// }
// System.out.println(factorial);
// Practice Problem 9
// int n = 8;
// int sum = 0;
// //for(int i=0; i<10; i++) - Goes from i=0 to i=9
// for(int i=1;i<=10;i++){
// sum += n*i;
// }
// System.out.println(sum);
}
}