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

Luz 管理员

暂无介绍

89860 篇文章 33 次评论

PROGRAMMING:Calculate the approximate value of E

Luz5年前 (2021-05-10)423
Write a program, input a smaller real number Delta, use e = 1 + 1 / 1+ 1/2!+ 1/3!+ ⋯+1/n! Calculate the approximate valu…

PROGRAMMING:Output the greatest common divisor (apply the break statement)

Luz5年前 (2021-05-10)397
Input positive integers m and N, output their greatest common divisor, require the application of break statement in the…

PROGRAMMING:Output digital and

Luz5年前 (2021-05-10)397
Input a string of characters (ending with #) and output the sum of all the numeric characters in the string.###Input exa…

PROGRAMMING:Output ASCII code

Luz5年前 (2021-05-10)385
Input a string of characters (ending with #) and output each character and its ASCII code in turn (excluding #).###Input…

PROGRAMMING:Output sum from 1 to n (apply break statement)

Luz5年前 (2021-05-10)356
Outputs the sum of 1 to n###Input format:An integer n.###Output format:And.###Input example:```inten```###Output example…

PROGRAMMING:Exhaustive factorization

Luz5年前 (2021-05-10)462
Input a positive integer n value (n does not exceed 20), programming output n( N). Please define the integer in the prog…

PROGRAMMING:4 digits that meet specific conditions

Luz5年前 (2021-05-10)438
```A 4-bit positive integer satisfying the following conditions:It consists of numbers 1 to 9; The numbers are different…

PROGRAMMING:Sum of some integers

Luz5年前 (2021-05-10)406
Programming input a number of integers (at least 1), output their sum.###Input example:```in1 2 3 4```###Output example:…

PROGRAMMING:Xiao Ming's bank card password

Luz5年前 (2021-05-10)409
```If Xiao Ming wants to set a 6-digit password for his bank card, he should comply with the following rules:(1) The fir…

PROGRAMMING:Output the greatest common divisor (using the continue statement)

Luz5年前 (2021-05-10)381
Programming input positive integers m and N, output their greatest common divisor, require the application of continue s…