본문 바로가기

   
Programming/Programming Exam

for문 과 if문을 이용해 1~100까지 숫자중 짝수값만 출력하세요.

반응형

for문 과 if문을 이용해 1~100까지 숫자중 짝수값만 출력하세요.

C#



using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

using System.Threading.Tasks;

 

namespace Exam01

{

    class Program

    {

        //1~100 숫자중 짝수에 해당하는 숫자만 출력

        static void Main(string[] args)

        {

            //반복문 100까지 순차적으로 돈다.

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

            {

                //i 2 나눴을때 0이면 짝수

                if (i%2==0)

                {

                    Console.WriteLine("짝수 : " + i);

                }

            }

        }

    }

}








Java




public class Exam01 {
      public static void main(String[] args){
             for ( int i = 0; i <= 100; i++) {
                   if( i%2==0){
                        System. out.println( "짝수 숫자" + i);
                  }
            }
      }

}











ASP



<%          
                 for i=1 to 100 step 1
                                If i Mod 2 = 0 Then
                                                Response.write "ASP 짝수 : " & i & "<br />"
                                End If
                next
%>









PHP



<?
for ($i=1;$i<=100;$i++){
                 if ($i%2==0){
                                echo( "PHP 짝수 : " .$i."<br/>");
                }
 }

?>




반응형