SN'''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); }'''Comment·Article·Mar 29, 2023·Developer/Coding Interview Challenge #1