© 2026 LinearBytes Inc.
Search posts, tags, users, and pages
Sithembiso Nkosi
IT DEV
'''private static void Main(string[] args) { int total = 0; for(int i = 0; i<1000; i++) { if(i%3==0 || i%5==0) { total = total+i; }
} Console.WriteLine("Answer:" + total);
}'''