• sai sai 56
  • NEWBIE
  • 20 Points
  • Member since 2023

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 4
    Questions
  • 2
    Replies
public class IS_stVSnst {
    
     public integer z= 7;
  public integer x= 9;
  public static integer a= 9;
  public static integer b = 7,result; 
  
  public void kyun(){
    result = z+x;
    system.debug(result);
    
   
  }
  
    public static void how(){
     result = a+b;
  system.debug(result);
    }
}
public class Constructorm {
    public constructorm(){
  
  system.debug('hello family'); 
  }
  public constructorm(){
  system.debug('hello world');
  }
  public constructorm(integer x, integer y){
  system.debug('the integer is '+x ,y);
  }
    public constructorm(String a,String u,boolean z){
  system.debug('the senetence is'+ a ,u,z);
  }

}
public class Even_Or_Odd {
     public integer n=12;      
    public void see(){
        
        
        if(n/2==0)
        {
            System.debug(n+'is a even number');
        }
        else
        {
            System.debug(n+'is a odd number ');
        }
    }

}
public class Calculator2 {
    public integer kk = 34;
    public integer op = 23;
    
    public integer result;
    public static void raj(){
        
       result = kk+kj;
        System.debug(result);
    }
public class Constructorm {
    public constructorm(){
  
  system.debug('hello family'); 
  }
  public constructorm(){
  system.debug('hello world');
  }
  public constructorm(integer x, integer y){
  system.debug('the integer is '+x ,y);
  }
    public constructorm(String a,String u,boolean z){
  system.debug('the senetence is'+ a ,u,z);
  }

}
public class Calculator2 {
    public integer kk = 34;
    public integer op = 23;
    
    public integer result;
    public static void raj(){
        
       result = kk+kj;
        System.debug(result);
    }