#include <stdio.h>
int main()
{
char yourname;
int yourage;
printf("Whats your name?\t");
scanf("%c",&yourname);
printf("How old are you?\t");
scanf("%d",&yourage);
printf("You are %d years old and your name is %c\n\n\n",yourage,yourname);
system("pause");
return(0);
}
我想這個程序要求輸入用戶名和年齡,然後打印出來..Ç - scanf函數,printf的姓名和年齡節目
你的問題是什麼? – 2014-11-06 21:53:21
您是否閱讀過[scanf(3)]的文檔(http://man7.org/linux/man-pages/man3/scanf.3.html)?你在一些免費軟件中搜索了一些'scanf'的例子嗎? – 2014-11-06 21:53:37
很好。祝你好運。你有問題嗎? – 2014-11-06 21:54:10