{
}
Points to remember
- You cant print any output out from parenthesis
- ek parenthesis ke andar same name of variable nhi ho skta
- means bracket ke bahar same name ka variable bna skte hai
- round off krne ke liye Math.round ka use krenge
public class Main {
public static void main(String[] args) {
int a = 10;
if(a > 5) {
int b = 10;
}
System.out.println(b);
}
}
double*integer = double kyo ki double bdha hai
Comments
Post a Comment