전체 카테고리326 C++ 기초 별 피라미드 Star pyramid, for while if 연습 #include using namespace std; int main() {int star = 1;while (1) //true{ for (int i = 0; i < star; i++) { cout 2019. 1. 8. C++기초 구구단 for while #include using namespace std;int main(){int x = 0, y; while (++x&&x < 10) {for (y = 1; y 2019. 1. 8. 이전 1 ··· 25 26 27 28 다음