|
남병철.레조 님이 쓰신 글 :
:
: 전 방금 소스코드 복사해서 컴파일 했더니 제대로 컴파일되어 실행되었습니다.
: Alt + P + B 로 빌드올해보세요.
: 콘솔 프로젝트는 C++로 만들어서 했습니다.
:
:
:
: joohz 님이 쓰신 글 :
: : 자신이 원하는 진법으로 바꾸는 프로그램을 다음과 같이 짰는데여...
: :
: : #include <stdio.h>
: : #include <iostream.h>
: : #include <conio.h>
: : #include <stdlib.h>
: :
: : class data {
: : unsigned num,code,res[],i;
: : public:
: : void start();
: : void calc();
: : void output();
: : };
: :
: : void data::start() {
: : cout<<"진법을 구하구자 하는 숫자를 입력하세여(정수만 가능)"<<endl;
: : cin>>num;
: : cout<<"원하는 진법을 입력하세여.(정수만 가능)"<<endl;
: : cin>>code;
: : if(code==1) {
: : cout<=0;j--) cout< |