当前位置:首页
> Luz 第2992页
Luz 管理员
暂无介绍
89860 篇文章 33 次评论PROGRAMMING:The maximum of four numbers
Using relational operation and conditional operation, program input 4 integers and output their maximum value.#####Input…
PROGRAMMING:Validity of date
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
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
Using relational operation and conditional operation, program input three integers and output their maximum value.#####I…
PROGRAMMING:Use format specifiers to enter real numbers
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)
```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
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
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
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)
Analyze the code.```Case 03-02-01 output data using format specifierCase code 03-02-01. C#include int main(){ int a=1234…