代码搜索:surprising
找到约 12 项符合「surprising」的源代码
代码结果 12
www.eeworm.com/read/423068/6933720
txt science.txt
The Electronic Telegraph Thursday 28 September 1995 Science
This summer the Royal Observatory at Herstmonceux
found new life as a science centre. Andro Linklater
celebrates a partial victory for th
www.eeworm.com/read/448932/7521704
cpp 4863955_ce.cpp
#include
#include
using namespace std;
int main()
{
bool find[28][28];
string input;
while(cin>>input)
{
if(input=="*") break;
int i,j;
bool not=false;
for(i=
www.eeworm.com/read/448932/7521705
cpp 4863961_ce.cpp
#include
#include
using namespace std;
int main()
{
bool find[28][28];
string input;
while(cin>>input)
{
if(input=="*") break;
int i,j;
bool not=false;
for(i=
www.eeworm.com/read/211954/15169476
cpp 2814.cpp
#include
#include
int main()
{
char m[85][30][30];
int i,j,k,l;
char s[100];
int ok;
while(scanf("%s",s))
{
if(strcmp(s,"*")==0)break;
memset(m,0,sizeof(m));
www.eeworm.com/read/273406/10917960
java puzzledstring.java
//: PuzzledString.java
//package g3ds.joop.ch4;
public class PuzzledString{
public static void main(String agrs[]){
//定义两个内容相同的String型变量,用快速初始化方法创建对象
String a1="test";
String b1="test
www.eeworm.com/read/452050/7448669
c 2112547_ac_0ms_12k.c
# include
# include
int check(char str[])
{
int i, D, l, tmp;
int mark[800];
l = strlen(str);
for(D = 0; D
www.eeworm.com/read/448932/7521703
cpp 4863964_ac_16ms_236k.cpp
#include
#include
using namespace std;
int main()
{
bool find[28][28];
bool tnot;
string input;
while(cin>>input)
{
if(input=="*") break;
int i,j;
tnot=false;
www.eeworm.com/read/254578/12128912
java puzzledstring.java
//: PuzzledString.java
//package g3ds.joop.ch4;
public class PuzzledString{
public static void main(String agrs[]){
//定义两个内容相同的String型变量,用快速初始化方法创建对象
String a1="test";
String b1="test
www.eeworm.com/read/251835/12317614
m uminus.m
function q = uminus(p)
% Negate the vertices of a polygon.
% This may have surprising consequences if p is unbounded.
% Copyright 2003 by Toby Driscoll (driscoll@math.udel.edu).
% $Id: u
www.eeworm.com/read/133885/5898963
java eventdesc.java
/**
* Describes a particular type of event. This is the default
* implementation. Not surprising, it also includes methods for
* setting up the vector, as well as the reading stuff you'd expect