printf()和scanf()的*修飾符
阿新 • • 發佈:2019-02-02
printf()與*修飾符
/* *Copyrights(c)2018,csdn學院 *All rights reserved. *檔名稱:*與input&output *作 者;劉傑 *完成日期:2018年5月29日 *版 本 號:v1.0 *問題描述:*參與printf()與scanf() *程式輸出:*修飾符 */ #include <stdio.h> int main() { unsigned width,precision; int number=256; double weight=242.5; printf("enter a field width:\n"); scanf("%d",&width); printf("the number is:%*d:\n",width,number); printf("now enter a width and precision:\n"); scanf("%d%d",&width,&precision); printf("weight=%*.*f\n",width,precision,weight); printf("done!\n"); return 0; }
scanf()與*修飾符
/* *Copyrights(c)2018,csdn學院 *All rights reserved. *檔名稱:*與input&output *作 者;劉傑 *完成日期:2018年5月29日 *版 本 號:v1.0 *問題描述:*參與printf()與scanf() *程式輸出:*修飾符 */ #include <stdio.h> int main() { int n; printf("please enter three integers:\n"); scanf("%*d%*d%d",&n); printf("the last integers was%d\n",n); return 0; }