1. 1.
    +2
    public class ciftlerToplami
    public static void main(string args[])
    {
    int toplam=0;
    for(int x=0;x<=100;x++)
    {
    if(x%2==0)
    toplam+=x;

    else
    continue;

    }
    System.out. println(toplam);
    }
    ···
   tümünü göster