Notice
Recent Posts
Recent Comments
Link
«   2024/07   »
1 2 3 4 5 6
7 8 9 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
28 29 30 31
Archives
Today
Total
관리 메뉴

브래의 슬기로운 코딩 생활

C언어 1주차 강의 후 과제 본문

1-1/C프로그래밍

C언어 1주차 강의 후 과제

김브래 2022. 3. 11. 18:43

1주차 수업 이후 과제.hwp
0.20MB

1. 프로그래밍 언어(최소 5, , C, C++, java, C#, python ) 선택하고 자신의 이름 출력하는 소스 작성

 

C: #include <stdio.h>

int main()

{

printf("김동현");

return 0;

}

 

C++: #include <iostream>

using namespace std;

int main()

{

cout<<"김동현";

return 0;

}

 

C#: using System;

class HelloWorld {

static void Main() {

Console.WriteLine("김동현");

}

}

 

Java: public class Main

{

public static void main(String[] args) {

System.out.println("김동현");

}

}

 

Python: print('김동현')

2. 자신의 이름을 10번 출력하는 프로그램을 작성하시오. '캡처도구'를 사용하여 화면을 캡처하여 제출하세요.

 

'1-1 > C프로그래밍' 카테고리의 다른 글

C언어 3주차 수업 후 과제  (0) 2022.03.19
C언어 3주차 예습 후 과제  (0) 2022.03.17
C언어 2주차 강의 후 과제  (0) 2022.03.13
C언어 2주차 예습 후 과제  (0) 2022.03.11
C언어 강의 교수님 정보 및 자료  (0) 2022.03.11