代码搜索:L
找到约 10,000 项符合「L」的源代码
代码结果 10,000
www.eeworm.com/read/101082/6243438
1c l2.1c
#print
(Section 1.2)
What value is printed by this printf statement?
printf("%.3f", 3.141592654);
Type "answer XXX", where XXX is the value.
#copyin
#user
#uncopyin
#match 3.142
#fail
Remember abou
www.eeworm.com/read/101082/6243440
1d l5.1d
#print
Write a program that counts the blanks, tabs, and newlines
in its input, and prints the total. Don't forget to
define the value of EOF at the beginning of your program.
The best way is to add
www.eeworm.com/read/101082/6243442
1b l2.1b
#print
(Section 1.2)
Write a C program that prints a number which is
the sum of three numbers: 23, 197, and the product
of 23 and 197. Again, compile and test
it. Please do the computation with the
www.eeworm.com/read/101082/6243446
1d l1.1d
#print
(Section 1.1)
Write a program which prints these four lines,
exactly as shown:
A tab is \t
A backspace is \b
A quote is \"
A backslash is \\
Compile it, test it, then type ready.
#once #create
www.eeworm.com/read/101082/6243447
2b l16.2b
#print
Write a program which copies all lines containng
the letter 'p' from its input to its output.
Compile and test it; then type "ready".
#once #create Ref
mountain station south orange maplewood m
www.eeworm.com/read/101082/6243449
1d l2.1d
#print
What value is printed by this printf statement?
printf("%%3.1f", 3.141592654);
Type "answer XXX", where XXX is the value.
#copyin
#user
#uncopyin
#match %3.1f
#fail
Look again - it's %%
#log
www.eeworm.com/read/101082/6243451
1g l5.1g
#print
Write a program to copy its input to its output,
replacing each string of one or more blanks by
a single blank.
#once #create Ref
This has lines with several blanks
including
www.eeworm.com/read/101082/6243453
3c l12.3c
#print
Are the files "old" and "new" in this directory the same?
Again, if they are not, "diff" will print out the differences
marking the lines in the first file named by "
www.eeworm.com/read/101082/6243455
1d l6.1d
#print
What does "*b*" match? Clearly, any file
with a "b" anywhere in its name. Similarly,
how many files in this directory have
"se" somewhere in their name?
Type "answer N" when you figure it out
www.eeworm.com/read/101082/6243456
1g l13.1g
#print
Suppose that we really do want to interchange the contents
of the files "dick" and "jane". One way to do it is
to move the contents of "dick" into some temporary file,
then move "jane" onto "di