브래의 슬기로운 코딩 생활
C++프로그래밍 1주차 과제 본문
수업 시간에 실습한 소스 코드
#include <iostream>
using namespace std;
int main()
{
cout<<"Hello World";
return 0;
}
#include <iostream>
#include <stdio.h>
using namespace std;
int main()
{
cout << "Hello Worl1d\n";
printf("Hello");
return 0;
}
public class HelloWorld
{public static void main(String[] args)
{System.out.println("Hello, World!");
}} // JAVA (.java)
#include <iostream>
int main()
{std::cout<<"Hello, World!";
} //C++(.cpp)
class HelloWorldApp
{public static void Main()
{System.Console.WriteLine("Hello, World!");
}} // C# (.cs)
#include <stdio.h> // 전처리기, 5장
#define SIZE 4 // 전처리기, 5장
typedef struct { // 구조체, 12장
char name[10];
double w;
}WEIGHT;
void swap(WEIGHT*, WEIGHT*); // 함수 선언, 8장
int main(void)
{
WEIGHT man[SIZE] = { {"한개발",57.5}, // 배열, 10장
{"엄청군",125.6},
{"갈비양",35.7},
{"김브래",57.7} };
int i, j; // 변수, 3장, 기억 클래스,9장
for (i = 0; i < 3; i++) { // 제어문, 7장
for (j = i + 1; j < 4; j++) { // 연산자, 6장
if (man[i].w > man[j].w) {
swap(&man[i], &man[j]);
} // call by reference, 11장
}
}
printf(" 이름 \t체중\n");// 표준 라이브러리 함수, 4장
for (i = 0; i < 3; i++) {
printf(" %s %5.1f\n", man[i].name, man[i].w);
}
return 0;
} //main()함수 끝
void swap(WEIGHT* mani, WEIGHT* manj)// 포인터, 11장
{ //함수 정의
WEIGHT temp;
temp = *mani;
*mani = *manj;
*manj = temp;
}
#include <iostream>
using namespace std;
int main()
{
cout << "Hello World" << endl;
return 0;
}
#include <iostream>
int main()
{std::cout << "Hello World!\n";
}
----------------------------------------------------------------------------------
티스토리 블로그: https://brae.tistory.com/
'1-2 > C++프로그래밍' 카테고리의 다른 글
C++프로그래밍 6주차 강의 정리 (0) | 2022.10.06 |
---|---|
C++프로그래밍 4주차 정리 (0) | 2022.09.22 |
C++프로그래밍 3주차 정리 (0) | 2022.09.15 |
C언어 복습 정리 (0) | 2022.09.12 |
C++프로그래밍 2주차 (0) | 2022.09.08 |