ºÝºÝߣ

ºÝºÝߣShare a Scribd company logo
? F printf( ) scanf( )
printf ( )
printf( F F, F F, F F,...)
F F ? F
F F
F F ? F F F
F F
14
F F ? F printf
%d F F
%o
%x
%u F%u F
%e F F 2.13e45
%f
%g %e %f
F
%c F F
%s F
15
F
F F F F
( F F )
F ? FF ? F
? F
Note F F F
F F %
F
16
scanf ( )
scanf( F F , F F, F F,...)
F F ? F
F F ? F F ( ) F FF F ? F F ( ) F F
F F
F F F 2
F F F
- F & F
F F ? F F
- F ? F F & F
17
F printf, scanf
#include <stdio.h>
main(){
int age;
float height;
char name[30];char name[30];
printf("Please enter your name, age and height: ");
scanf("%s%d%f",&name, &age, &height);
printf("Name: %s is %d years old",name,age);
printf(" and tall %f cms.n",height);
getch();
}
18

More Related Content

What's hot (10)

PDF
????????????????????? Printf scanf
????? ?????
?
PDF
???????????????????
??????? ?????
?
PDF
???????????????
????? ?????
?
PPTX
How the stack works(1)
keithrozario
?
DOCX
Alu all shift register
Arun Chaudhary
?
PDF
C++: The Cathedral and the Bizarre
Pete Goodliffe
?
PPTX
Stack using Array
Sayantan Sur
?
PPTX
JavaScript Gotchas
Robert MacLean
?
PPTX
CQL ʵÏÖ
dennis zhuang
?
????????????????????? Printf scanf
????? ?????
?
???????????????????
??????? ?????
?
???????????????
????? ?????
?
How the stack works(1)
keithrozario
?
Alu all shift register
Arun Chaudhary
?
C++: The Cathedral and the Bizarre
Pete Goodliffe
?
Stack using Array
Sayantan Sur
?
JavaScript Gotchas
Robert MacLean
?
CQL ʵÏÖ
dennis zhuang
?

Recently uploaded (20)

PDF
Fueling Growth - Funding & Scaling Your Business - AI Amplified SB Summit 202...
Hector Del Castillo, CPM, CPMM
?
PDF
MOOJAY Wireless Keyboard & Mouse Ergonomic Combo ¨C Comfort, Silence, and Styl...
Topmate
?
PDF
A Brief Introduction About Dorian Fenwick
Dorian Fenwick
?
PDF
Vedanta Group Sets High Standards in Tax Contribution.
Vedanta Cases
?
PDF
Agro Paper Mill Wastewater Treatment Challenges & Solutions You Need to Know
marketing950658
?
PDF
Haiti Educational System Le Floridien.pdf
LE FLORIDIEN
?
PDF
Tesia Dobrydnia - A Leader In Her Industry
Tesia Dobrydnia
?
PDF
Netflix Social Watchlists Business Proposal
lexarofficial222
?
PPTX
Manuscript and Types of Headings used in EDPM.pptx
RosanHaye1
?
PPTX
Essar at IEW 2025, Leading the Way to India¡¯s Green Energy Transition.
essarcase
?
PDF
SACRS_Spring Mag 2025 Graceada Article.pdf
matthieu81
?
PPTX
Jessica Garza: At the Intersection of Technology and Humanity
Jessica Garza
?
PPTX
Essar 2.0 Rising with a New Approach.pptx
essarupdate
?
PDF
Natesan Thanthoni: The Agile Visionary Transforming Virbac IMEA (India, Middl...
red402426
?
PDF
SAG Infotech Issues Press Release for Media and Publications
SAG Infotech
?
PDF
Mastering Healthcare Brand Building & Revenue Optimization: The Shaynly Method
Shaynly
?
PPTX
The Strategic Landscape of Essar¡¯s CSR Initiatives in 2024
essarupdate
?
PPTX
Black life TeleHealth 3 (1).pptx Business Plan
mdthelackyboy
?
PDF
The Future State Of Work - Actionable Summary for Startup Founders
vikram sood
?
PDF
Walt Disney Business Proposal for Hollywood Studios
balazscsillag
?
Fueling Growth - Funding & Scaling Your Business - AI Amplified SB Summit 202...
Hector Del Castillo, CPM, CPMM
?
MOOJAY Wireless Keyboard & Mouse Ergonomic Combo ¨C Comfort, Silence, and Styl...
Topmate
?
A Brief Introduction About Dorian Fenwick
Dorian Fenwick
?
Vedanta Group Sets High Standards in Tax Contribution.
Vedanta Cases
?
Agro Paper Mill Wastewater Treatment Challenges & Solutions You Need to Know
marketing950658
?
Haiti Educational System Le Floridien.pdf
LE FLORIDIEN
?
Tesia Dobrydnia - A Leader In Her Industry
Tesia Dobrydnia
?
Netflix Social Watchlists Business Proposal
lexarofficial222
?
Manuscript and Types of Headings used in EDPM.pptx
RosanHaye1
?
Essar at IEW 2025, Leading the Way to India¡¯s Green Energy Transition.
essarcase
?
SACRS_Spring Mag 2025 Graceada Article.pdf
matthieu81
?
Jessica Garza: At the Intersection of Technology and Humanity
Jessica Garza
?
Essar 2.0 Rising with a New Approach.pptx
essarupdate
?
Natesan Thanthoni: The Agile Visionary Transforming Virbac IMEA (India, Middl...
red402426
?
SAG Infotech Issues Press Release for Media and Publications
SAG Infotech
?
Mastering Healthcare Brand Building & Revenue Optimization: The Shaynly Method
Shaynly
?
The Strategic Landscape of Essar¡¯s CSR Initiatives in 2024
essarupdate
?
Black life TeleHealth 3 (1).pptx Business Plan
mdthelackyboy
?
The Future State Of Work - Actionable Summary for Startup Founders
vikram sood
?
Walt Disney Business Proposal for Hollywood Studios
balazscsillag
?
Ad

???????? Printf&scanf

  • 1. ? F printf( ) scanf( ) printf ( ) printf( F F, F F, F F,...) F F ? F F F F F ? F F F F F 14
  • 2. F F ? F printf %d F F %o %x %u F%u F %e F F 2.13e45 %f %g %e %f F %c F F %s F 15
  • 3. F F F F F ( F F ) F ? FF ? F ? F Note F F F F F % F 16
  • 4. scanf ( ) scanf( F F , F F, F F,...) F F ? F F F ? F F ( ) F FF F ? F F ( ) F F F F F F F 2 F F F - F & F F F ? F F - F ? F F & F 17
  • 5. F printf, scanf #include <stdio.h> main(){ int age; float height; char name[30];char name[30]; printf("Please enter your name, age and height: "); scanf("%s%d%f",&name, &age, &height); printf("Name: %s is %d years old",name,age); printf(" and tall %f cms.n",height); getch(); } 18