blob: b42d32dd0f9df90e3ed5e1bad0ec15823d8cb219 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
package com.example.spring;
public class Maths {
private int b;
public int getB() {
return b;
}
public void setB(int b) {
this.b = b;
}
public int add(int a) {
return a + b;
}
}
|