Study/C/C++ 
C++_2008_09_05
Posted on 2008/09/07 00:38

#include<iostream>

//using namespace std;
void main()
{
 char str[10][20] ; // 20자의 문자열을 10개 저장
 int Num[10]; // 10개의 숫자열을 저장

 for(int i=0; i<10; i++)
 {
  std::cout<<"이름 : ";
  std::cin>>str[i];
  std::cout<<"학번 : ";
  std::cin>>Num[i];
 }
 for(i=0; i<10; i++)
  std::cout<<str[i]<<"님의 학번은 "<<Num[i]<<" 입니다"<<std::endl;
}

SecretComment
     
 Hoseo/information 
2학기 시간표
Posted on 2008/08/27 21:50
사용자 삽입 이미지
SecretComment
     
 Game Develop/Character 
Normal Test 2008_3
Posted on 2008/08/23 16:26
사용자 삽입 이미지

노말맵 추출관련 테스트 한다고 테스트했던것,
SecretComment
  1 2 3 4 5 ... 26