CARVIEW |
Select Language
HTTP/2 200
date: Sun, 12 Oct 2025 05:07:34 GMT
content-type: text/html; charset=UTF-8
server: cloudflare
x-frame-options: DENY
x-content-type-options: nosniff
x-xss-protection: 1;mode=block
vary: accept-encoding
cf-cache-status: DYNAMIC
content-encoding: gzip
set-cookie: _csrf-frontend=8472d904bb6504ee2ad62ef88ca2c8bfe8eeaefd66ac9cf34c12c01ce6f1ce52a%3A2%3A%7Bi%3A0%3Bs%3A14%3A%22_csrf-frontend%22%3Bi%3A1%3Bs%3A32%3A%22lUH5AGWmuPqBLEMsaPNHdf3xARLLhsC3%22%3B%7D; HttpOnly; Path=/
cf-ray: 98d4130bd804c1f7-BLR
Project Euler, Problem #1, C - Pastebin.com
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* Если выписать все натуральные числа меньше 10, кратные 3 или 5, то
- получим 3, 5, 6 и 9. Сумма этих чисел равна 23. Найдите сумму всех
- чисел меньше 1000, кратных 3 или 5. */
- #include <stdio.h>
- int main()
- {
- int i;
- int s = 0;
- for(i = 0; i < 1000; i++)
- {
- if(i % 3 == 0 || i % 5 == 0)
- s+=i;
- }
- printf("%d\n", s);
- return(0);
- }
- // 233168
Advertisement
Add Comment
Please, Sign In to add comment
-
⭐⭐⭐Exchange Exploit⭐⭐
Java | 3 sec ago | 0.10 KB
-
⭐✅ Marketplace Glitch ✅ Working ✅ NEVER SEEN...
JavaScript | 6 sec ago | 0.25 KB
-
⭐⭐⭐Make $1500 in 20 minutes⭐⭐
Java | 15 sec ago | 0.10 KB
-
⭐✅ Exploit 2500$ in 15 Minutes⭐⭐⭐ 8
JavaScript | 15 sec ago | 0.25 KB
-
Free Crypto Method (NEVER SEEN BEFORE)⭐⭐ O
JavaScript | 24 sec ago | 0.25 KB
-
⭐⭐⭐MAKE $900 INSTANTLY⭐⭐
Java | 28 sec ago | 0.10 KB
-
⭐✅ Swapzone Glitch ✅ Working ⭐⭐ 9
JavaScript | 33 sec ago | 0.25 KB
-
⭐⭐⭐GMAIL Logs (2FA disabled)⭐⭐
Java | 40 sec ago | 0.10 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy. OK, I Understand