Advertisement
Guest User

sho_1

a guest
Feb 24th, 2020
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.28 KB | None | 0 0
  1. package com.company;
  2.  
  3. public class Main {
  4.  
  5.     public static void main(String[] args) {
  6.         int sum = 0;
  7.  
  8.         for (int i = 3; i <= 99; i = i + 1) {
  9.             if (i % 3 == 0) {
  10.             sum = sum + i;
  11.             }
  12.         }
  13.         System.out.println(sum);
  14.     }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement