2017年5月17日 星期三

輸入一個字串,並輸出於螢幕

#include <stdio.h>
int main()
{
  char s[80];
  printf("請輸入一個字串: ");
  scanf("%s", &s);
  printf("您剛輸入的值= %s \n", s);
  return 0;
}


執行結果:
請輸入一個字串: trump
您剛輸入的值= trump


執行結果:
請輸入一個字串: 川普
您剛輸入的值= 川普




執行結果:如果多打一個字串,它只列印出前面的字串。
請輸入一個字串: hello trump
您剛輸入的值= hello


沒有留言:

張貼留言