본문 바로가기

C++27

cout cin #include using namespace std; int main() { cout > width; //키보드로부터 너비를 읽어 width 변수에 저장 int height = 0; //cout 아래에 쓰던지 위에 쓰던지 상관 없음. 초기화 해주는 것이 코드가 길어질 경우 실수 방지를 위해 좋다 cout > height; //키보드로부터 높이를 읽어 height 변수에 저장 int area = width * height; // 사각형의 면적 계산 cout width; //키보드로부터 너비를 읽어 width 변수에 저장 int height; //cout 아래에 쓰던지 위에 쓰던지 상관 없음 cout > height; //키보드로부터 높이를 읽어 height 변수에 저장 int area = width * h.. 2020. 10. 13.
<iostream> cout << #include #include int main() { printf("hello c\n"); std::cout 2020. 10. 13.
volatile , type qualifiers(한정자) type qualifiers(한정자) const, volatile, restrict 를 가리켜 한정자라 함. 이들은 선언되는 변수에 특성을 부여(혹은 기능상에 제한을 가하는) 키워드 들 2020. 9. 3.
p197 class 계산기 class FourCal: def setdata(self, first, second): self.first = first self.second = second def add(self): result = self.first + self.second return result def mul(self): result = self.first * self.second return result def sub(self): result = self.first - self.second return result def div(self): result = self.first / self.second return result 2020. 8. 18.
1-4 영어 자음 모음 갯수 출력 #include int main(void) { int al_c = 0; int al_v = 0; int kor_c = 0; int kor_v = 0; al_c = 24; al_v = 16; kor_c = 14; kor_v = 10; printf("%d\n", al_c); printf("%d\n", al_v); printf("%d\n", kor_c); printf("%d\n", kor_v); return 0; } 4. 알파벳과 한글의 자음, 모음 정보를 설정하고 출력하기 조건1) 알파벳 자음:24개, 알파벳 모음: 16개, 한글 자음:14개, 한글 모음: 10개 조건2) 알파벳 자음, 모음과 한글 자음, 모음 변수들을 생성하고 초기값을 0으로 설정하세요. 조건3) 각 변수에 대해서 자음, 모음 갯수를 입력.. 2020. 7. 30.
반지름입력받기 /원면적구하기 #include int main(void) { const PI = 3.14; float round; printf("반지름입력:"); scanf_s("%f", round,1); printf("%f * %f * PI = %f", round, round, round*round*PI); } #include int main(void) { const double PI = 3.14; double round = 5; printf ("%f * %f * PI = %f", round, round, round*round*PI); return 0; } printf ("%f * %f * PI = %f", &round, &round, &round*round*PI); printf일땐 &안씀. scanf 일때 & 쓰는거 .. 2020. 7. 30.
1-3 변수 - 성적표 점수 #include int main(void) { int Avg; int Total; int kor=0; int eng=0; int math=0; int sci=0; kor=90; eng=80; math=70; sci=60; printf("%d\n", kor); printf("%d\n", eng); printf("%d\n", math); printf("%d\n", sci); Total = (kor + eng + math + sci); Avg = (Total/4); printf ("Total = %d\n" , Total); printf ("Average = %d" , Avg); return 0; } 위 코드도 작동 제대로 됨. 점수들 선언할 때 앞에 int또 붙이면 안됨 .. already declared 어.. 2020. 7. 29.