以下是我用C語言寫的
#include <stdio.h>
int main( void ){ char string[ 20 ]; while( 1 ) { scanf( "%19s", string ); printf( "hello, %s", string ); } return 0;}