nord vpnnord vpn
Ad

Untitled

mail@pastecode.io avatar
unknown
plain_text
a year ago
304 B
1
Indexable
Never
public static string getClass(int sayi){
string whiteClass="denemeBeyaz";
string grayClass="denemeGri";

for (int i = 1; i <= sayi; ++i)
{ 
  if (i % 2 == 0)
    return whiteClass ;
      else
        return grayClass ; 
}

return "";

}

Console.WriteLine(getClass(3));








nord vpnnord vpn
Ad