[Bài tập]Day 2: Printf và Scanf

Hôm nay mình sẽ hướng dẫn các bạn sử dụng 2 lệnh cơ bản trong pascal đó là lệnh in ra màn hình printf và lệnh quét scanf, vậy thì sự khác nhau giữa 2 lệnh này là gì, lệnh printf chính là dùng để đưa giữ liệu ra trong khi đó lệnh scanf lại là để quét dữ liệu nhập vào sau đây là 3 ví dụ

Bài 1:  Use the printf( )  statement and do the following
Print out the value of the integer variable sum
Print out the text string "Welcome", followed by a new line.
Print out the character variable letter
Print out the float variable discount

Print out the float variable dump using two decimal places
Bài 2:Use the scanf( )  statement and do the following:

To read a decimal value from the keyboard, into the integer variable sum
To read a float variable into the variable discount_rate
Print the ASCII values of the characters ‘A’ and ‘b’



Bài 3:Write a program which takes name, basic , daper ( ie, percentage of D.A), bonper (ie, percentage bonus) and loandet ( loan amount to be debited) for an employee. Calculate the salary using the following relation:

salary = basic + basic * daper /100 +bonper                 
        *  basic/100 - loandet
Data is :
 
name
basic
daper
bonper
loandet
MARK
2500
55
33.33
250.00

Bài 4:Write a program that asks for your first name and last name, and then prints the names in the format last name, first name.
Lưu ý: có hai cách để nhập dữ liêu  kiểu char *tên biến = hoặc *tên biến[ số kí t]. với lệnh scan chúng ta ko thể dùng cách thứ 1, và khi trương trình đã chạy và muốn nhập dữ liêu tuyệt đối ko gõ dấu cách vì dấu cách làm ngắt quãng dữ liệu


Nhận xét