-->
当前位置:首页 > Luz 第2992页
Luz

Luz 管理员

暂无介绍

89860 篇文章 33 次评论

PROGRAMMING:The maximum of four numbers

Luz5年前 (2021-05-10)395
Using relational operation and conditional operation, program input 4 integers and output their maximum value.#####Input…

PROGRAMMING:Validity of date

Luz5年前 (2021-05-10)532
Enter the value of year, month and day of a day, and output whether the day is a legal date (the expression will be very…

PROGRAMMING:Legitimacy of dates in 2100

Luz5年前 (2021-05-10)364
Enter the value of the month and day of a day in 2100, and output whether the day is a legal date (the expression will b…

PROGRAMMING:The maximum of three numbers

Luz5年前 (2021-05-10)331
Using relational operation and conditional operation, program input three integers and output their maximum value.#####I…

PROGRAMMING:Use format specifiers to enter real numbers

Luz5年前 (2021-05-10)395
Please program to input 4 real numbers, and output their variance, the results retain 4 decimal places. Note the use of…

PROGRAMMING:Read character (code analysis)

Luz5年前 (2021-05-10)368
```Case 03-02-03 read characterCase code 03-02-03. C#include int main(){int a1,a2;char c1,c2;scanf("%d%c",&a1,&c1);scanf…

PROGRAMMING:Use format specifiers to enter integers

Luz5年前 (2021-05-10)465
Practice the following code to discuss the use of format specifiers.```Case 03-02-02 input integer using format specifie…

PROGRAMMING:Format description code analysis

Luz5年前 (2021-05-10)390
Analyze the code.```#include int main(){ int a=1234;printf("\n01.a=%d.a=%#d", a,a);printf("\n02.a=%o.a=%#o", a,a);printf…

PROGRAMMING:Test computer

Luz5年前 (2021-05-10)406
Take the computer test. It's up to you. The format of the title is as follows: a + B four arithmetic questions, let the…

PROGRAMMING:Output data using format specifiers (code analysis)

Luz5年前 (2021-05-10)538
Analyze the code.```Case 03-02-01 output data using format specifierCase code 03-02-01. C#include int main(){ int a=1234…