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

Luz 管理员

暂无介绍

89860 篇文章 33 次评论

PROGRAMMING:4.2 - calculate the sum of all integers between two numbers

Luz5年前 (2021-05-10)428
Write a program to read the value of two integers as follows, and then calculate the sum of all integers between them.``…

PROGRAMMING:4.3 - rewrite countdown program (negative numbers do not perform line feed)

Luz5年前 (2021-05-10)480
Modify the program in code listing 4-5 to not wrap lines when the input value is negative.-----From exercise 4-3```Pleas…

PROGRAMMING:4.8 - enter an integer and display the integer asterisk continuously

Luz5年前 (2021-05-10)415
Rewrite the program in listing 4-8 so that when the input value is less than 1, the newline character is not output.----…

PROGRAMMING:4.6 - displays all positive even numbers less than the input value in ascending order

Luz5年前 (2021-05-10)364
Write a program to display all positive even numbers less than the input value in ascending order(line feed after the en…

PROGRAMMING:4.7 - displays the power of all 2 less than the input value in ascending order

Luz5年前 (2021-05-10)408
Write a program to show all the powers of 2 that are less than the input integer in ascending order(if there is a digita…

PROGRAMMING:Remote lighting experiment of Internet of things

Luz5年前 (2021-05-10)411
Remote lighting an LED lamp is the most basic experiment of the Internet of things. If the position of the lamp is repre…

PROGRAMMING:matrix addition

Luz5年前 (2021-05-10)421
Find the result of matrix A + B, the program gives part of the code, please complete the whole program on the basis of t…

PROGRAMMING:Parity of CPA remainder

Luz5年前 (2021-05-10)461
CPA is the abbreviation of program design for college students. The three characters of 'C', 'p' and 'a' are transformed…

PROGRAMMING:Input and output exercise: print the four most common data type keywords of C language, separated by spaces.

Luz5年前 (2021-05-10)386
Please print the keywords corresponding to the four most common data types in C language, separated by spaces.###Input f…

PROGRAMMING:What day of the week

Luz5年前 (2021-05-10)474
Use the following formula to find out the day of the week$$h = (q + \frac{26(m+1)}{10} + k + \frac{k}{4} + \frac{j}{4} +…