Skip to content

Instantly share code, notes, and snippets.

@sapanparikh18
Created March 21, 2018 10:17
Show Gist options
  • Save sapanparikh18/46bf44dd66dfd2790bd8ecef87e2394e to your computer and use it in GitHub Desktop.
Save sapanparikh18/46bf44dd66dfd2790bd8ecef87e2394e to your computer and use it in GitHub Desktop.
//1.
for(User user:userList){
int year = getCurrentYear();
int days = getDaysInYear(year);
int dailySalary = user.getSalary()/days;
println "Daily salary of "+ user.getName() +" is "+dailySalary;
}
//2.
int year = getCurrentYear();
int days = getDaysInYear(year);
for(User user:userList){
int dailySalary = user.getSalary()/days;
println "Daily salary of "+ user.getName() +" is "+dailySalary;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment