카페검색 본문
카페글 본문
-
C++_포인터_1 2024.11.08해당카페글 미리보기
주소를 구하는 코드입니다. #include<iostream> using namespace std; int main() { int n; double x; cout << "Address of n : " << &n << ' '; cout << "Address of x : " << &x << ' '; return 0; } 이 코드의 실행결과를 보시면 Address of n...
-
서울시의 택시요금 변천사 2024.11.02해당카페글 미리보기
France Le coût de la vie à Seoul peut être différent par rapport à la moyenne du pays : www.combien-coute.net › cout-de-la-vie › coree-duCoût de la vie à Seoul (Corée du Sud) en 2024 : tous les prix<<<원문,클릭 13 oct. 2024 · Le...
-
Ezekiel 44~46 2024.03.31해당카페글 미리보기
around their wasits. They must not wear anything that makes them persire. When they go out into the outer cout where the people are, they are to take off the clothes they have been ministering in and are to leave them in the sacred rooms...
-
Albert/Honeybees Can count 2024.04.05해당카페글 미리보기
a long time, humans trouble with number zero. But honeybees understand the idea of zero. Sciencetists test that bee can cout. They use card with dot and sugar water. Overtime, the bees learned recogniz to count. Bee can count and...
-
std:cout를 cout로 간단하게 사용하려면? 2007.08.27해당카페글 미리보기
GUI화면을 쉽게 사용할 수 있는 라이브러리 비슷한 것을 만들고 있는데, 4: 5: 맨 아래에 있는 6: std::cout, std::cin 을 간단하게 7: cout, cin으로 할 수는 없는가요? 8: 9: */ 10: 11: // cons.cpp : Defines the entry point for the application. 12...
-
printf 와 cout 의 차이점.. 2005.06.24해당카페글 미리보기
#include #include void main() { cout << " !0 "<< endl; cout << !1 << endl; //여기서 " " 가 않들어가 게 되면 어떻게 처리 하라는 것 인가요?? cout << !3 << endl; cout << !'A' << endl; cout << (3>2) << endl; printf("!0 "); } 이렇게 출력 하게...
-
cin 과 cout 2009.05.15해당카페글 미리보기
iostream001.cpp #include #include void main(void){ char id[128],str2[128]; cout << "초 허접 게임 C++서버"; while(1){ cout << "ID와 비밀번호는 6~8문자까지 입력이 가능합니다." << endl; cout << "아이디:"; cin >> id; cout <<"비밀번호:"; cin...
-
입출력 cin 함수 cout 함수 김범규 2013.1.8 2013.01.08해당카페글 미리보기
//입출력 cin 함수 cout 함수 #include using namespace std; int n, m; void main() { cout << "두정수 입력 "; cin >> n >> m; cout << "합 " << n + m << " "; cout << "곱 " << n * m << endl; cout << "몫 " << n / m << endl; cout << "소수점...
-
c++ 과목별 점수 입력받아 총점 평균 출력하기 cout() 함수 소수점표시방법등 2018.04.09해당카페글 미리보기
#include using namespace std; int main(void) { int num=0, score=0, sum = 0, i=0; // 변수 선언 초기화 cout<< "몇 개 과목의 점수를 입력하시겠습니까? "; // 안내문 출력 cout<< "과목의 갯수를 정수로 입력하세요: "; cin >> num ; // 과목 갯수를...
-
C ++ 강좌 1 - printf 와 cout 2014.07.16해당카페글 미리보기
오늘은 C ++강좌를 시작할까 해요... 먼저 C 에서 쓰이는 printf 와 C++ 의 cout 을 설명해요.. <소스 1-1> 01:#include 02:int main(void) 03:{ 04: printf("Test Print "); 05: return 0; 06:} <소스 1-2> 01:#include 02:int main(void) 03:{ 04: cout...