Cevaplar
-
Hangi dilde olduğunu söyleseydin daha iyi olurdu ama ben c# ve php için yazayım
c# için
using System;
using System.Collections.Generic;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{

for (int i = 0; i < 100; i = i + 7)


Console.WriteLine(i);

Console.ReadLine();


}
}
}php için
<?php
for($i=0;$i<100;$i=$i+7)
echo "$i<br>";
?>Cevaplayan admin - 4 ay önce -
Bu soruyu yanıtlamak için giriş / kayıt olun.
Benzer Sorular Bulundu
-
Genel Konular - Gönderen tugbaatasever - 1 Cevap - 4 ay önce
-
Php - Gönderen ozgekatirci - 3 Cevaplar - 3 ay önce
bu işlemi gerçekleştirmek için istediğiniz emin misiniz?
|
Cevaplayan Ziyaretçi - Hemen Åimdi
|

