代码搜索:doing

找到约 2,359 项符合「doing」的源代码

代码结果 2,359
www.eeworm.com/read/405817/11456354

cpp doing homework again(贪心).cpp

#include #include #include using namespace std; struct inf { int dd,cost; bool operator < (const inf &a) const { return cost > a.cost; } }cs[1100]; int t
www.eeworm.com/read/153263/12045664

asp dele_user_doing.asp

www.eeworm.com/read/300587/13904693

cpp 1074 doing homework.cpp

/* 1074 Doing Homework Time Limit : 1000 ms Memory Limit : 32768 K Output Limit : 1024 K GUN C++ */ #include #include int news[1
www.eeworm.com/read/275831/10794530

rb 04 - doing date arithmetic.rb

require 'date' y2k = Time.gm(2000, 1, 1) # => Sat Jan 01 00:00:00 UTC 2000 y2k + 1 # => Sat Jan 01 00:00:01 UTC 2000 y2k - 1 # => Fri Dec 31 23:59
www.eeworm.com/read/275831/10794348

rb 13 - doing math with roman numbers.rb

class Roman # These arrays map all distinct substrings of Roman numbers # to their Arabic equivalents, and vice versa. @@roman_to_arabic = [['M', 1000], ['CM', 900], ['D', 500], ['CD', 400],
www.eeworm.com/read/152662/5671507

tag greetings.tag

Hello there. How are you doing?
www.eeworm.com/read/275831/10793697

rb 02 - doing two things at once with threads.rb

x = 0 Thread.new do while x < 5 x -= 1 puts "DEC: I decremented x to #{x}\n" end puts "DEC: x is too high; I give up!\n" end while x < 5 x += 3 puts "INC: I incremented x to #{x}\n