1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| package com.dec.fbs9100;
|
| public class MyUtil {
|
| public static int power(int src,int count) {
| int value = 1;
| for(int i=0;i<count;i++) {
| value *= src;
| }
| return value;
| }
|
|
| public static void main(String[] args) {
| System.out.println(1&3);
| }
| }
|
|