Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package pucc;
- public class test {
- public static void main(String[] args) {
- int sum=0;
- for(int i=0;i<=5;i++)
- {
- sum+=i;
- System.out.println("the current value of i is"+i); }
- System.out.println(sum);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement