Skip to content

Commit

Permalink
changes programs
Browse files Browse the repository at this point in the history
  • Loading branch information
MrAkashKumar committed Oct 26, 2020
1 parent 4b6a4b9 commit 83d4964
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public static void main(String[] args) {

while(n>0) {
r = n%10;
c = r+c*c*c;
c = c+r*r*r;
n = n/10;
}

Expand Down

0 comments on commit 83d4964

Please sign in to comment.