n*******e 发帖数: 2213 | 1 Yankees Tigers A's Braves Bucks Giants Yankees northgate
Yankees Tigers Angels Braves Cardinals Dodgers Cardinals K307
Yankees Tigers A's Nationals Cardinals Dodgers Tigers
jajabin
Blue Jays Tigers A's Braves Cardinals Giants Tigers
sfgmen
Yankees Tigers A's Nationals Cardinals Giants Detroit
Tigers surefirer
Orioles Tigers A's Braves Cardinals Giants Tigers Mutombo
Orioles Tigers A's Braves Card... 阅读全帖 |
|
k******i 发帖数: 5774 | 2 2014年5月Baseball版共242贴
排名 ID 帖数 忠诚度(排名) 引用数(排名) 引用率(排名)
1 K307 55 61.1% (6) 38 (1) 0.69 (13)
2 sfgmen 34 32.4% (15) 26 (3) 0.76 (12)
3 kevinlai 28 87.5% (4) 27 (2) 0.96 (9)
4 northgate 18 78.3% (5) 17 (4) 0.94 (10)
5 parrot 17 54.8% (8) 9 (5) 0.53 (15)
6 tosea 9 39.1% (10) 1 (16) 0.11 (24)
7 Maverick 8 2.0% (24) 8 (6) 1.00 (3)
JCC 8 34.8% (12) 7 (7) 0.88 (11)
... 阅读全帖 |
|
o*****t 发帖数: 227 | 3 #include
main() {
printf("Goodbye World");
} |
|
|
G**Y 发帖数: 33224 | 5 他说的是这类的吧:
“
发信人: SubDragon (SubDragon), 信区: ACM_ICPC
标 题: 88888888888一行搞定8皇后888888888888888
发信站: 珞珈山水 ( 2003年03月27日12:17:02 星期四), 站内信件
#include
#define q(o) a[j]o[j+i+7]o[j-i+31]
int a[39];
void main(int i,int j)
{
for(j=9;--j;i>8?printf("%10d ",a[j]):q(|a)||(q(=a)=i,main(i+1,j),q(=a)=0))
;
}
这个真是一行吧:)
不过偶没看懂输出
努力ing |
|
s****l 发帖数: 10462 | 6 就是啊。
而且剧情拉得太慢,两老人吃个饭能演十来分钟去了。
Wedding Studio 写成了 Wedding Stdio 这他妈什么水平啊,里面还海归穿来穿去的。 |
|
m*f 发帖数: 8162 | 7 这乐悠悠婚纱的wedding stdio太刺眼了 |
|
S*********g 发帖数: 24893 | 8 【 以下文字转载自 RuralChina 讨论区 】
发信人: StephenKing (88), 信区: RuralChina
标 题: 从星岛辞职以后,我去学了computer science
发信站: BBS 未名空间站 (Sun May 15 17:20:07 2011, 美东)
我从最基本的开机关机学起,
写过
#include
main(){ printf ("Hello World!\n");}
也写过
ClassName="bea.jolt.pool.servlet.weblogic.PoolManagerStartUp"...
三年以后,我终于拿到了computer science的master degree。
毕业时,正是99年末,我有缘赶上了computer science的黄金时代。
任何一个会写点java的,都可以在7,8万年薪的三四个工作中挑来选去。
我也不例外。还拿到了一份不菲的sign-on bonus。
几个月之后,我把一张三万五千美元的支票寄给了无私资助了我... 阅读全帖 |
|
m**x 发帖数: 8454 | 9 lz的code问题就是没有main()入口,所以是无法单独运行的。我补了main(),可以运行:
#include
#include
bool judge_prime(int a);
int main()
{
int innum;
printf("Please enter your number:");
scanf("%d", &innum);
if (judge_prime(innum)) printf("\n%d is a prime number.\n", innum);
else printf("\n%d is not a prime number.\n", innum);
return 1;
}
另外,c语言好像没有bool类型,因为我gcc编译无法通过(用int代替之即可通过)。
但c++有,所以用bool的话g++编译可以通过。 |
|
f******6 发帖数: 67 | 10 #include
#include
int main(int argc, char *argv[])
{
int value, base;
int remainder, place=79;
char buffer[80];
line_1 //buffer[79]=(char)(0);//不加这一行就有乱码
char *table ="0123456789ABCDEF";
value = atoi(argv[1]);
base = atoi(argv[2]);
printf("%d %dn", value, base);
do {
remainder = value%base;
printf("%cn", table[remainder]);
buffer[place] = (char)(table[remainder]);
printf("%cn", buffer[place]);... 阅读全帖 |
|
t******n 发帖数: 2939 | 11 ☆─────────────────────────────────────☆
l63 (l63) 于 (Sun May 26 03:44:32 2013, 美东) 提到:
我对素数的定义是:
"a是素数 <=> a是大于1的自然数, 且a不被任何小于a的素数整除"
C代码如下:
bool judge_prime(int a)
{
int b;
if (a<=1)
return 0;
else
{
for (b=0;b
{
if(judge_prime(b)&& a%b==0)
return 0;
}
return 1;
}
}
☆─────────────────────────────────────☆
l63 (l63) 于 (Sun May 26 03:46:21 2013, 美东) 提到:
看了这个还认为我的定义有什么 "循环定义" 的问题的人, 我只能说, 你的智商连... 阅读全帖 |
|
d**********o 发帖数: 1321 | 12 hw3b c-.y file
上面这一楼贴了载止hw3b deadline时我match的结果(也就是老师可以以这些不match
的ERROR为借口不给后来我补上的成绩),但是因为当时我还是没有写完,后来感恩节
期间就接着又写了一些,而且hw5是based on hw3 & hw3b的基础上(当我hw5是based
on更好的hw3的结果时,我应该可以得更多的分吧)。
hw4因为写得比较顺利,就不曾保留任何交上去作业的output,没有什么一目了然的结
果是我可以贴在这里的。原本我是想要把自己最的一次作业hw5贴出来的,但那已经是
一个完整的compiler,而且以后我还需要用自己的course project来找工作,所以一定
就不贴最终结果了。那就贴一个hw3b的c-.y文件吧,它集中的hw1、hw2、hw3、 hw3b的
结果,是我自己hw3b *.y文件的最完整版本。这些作业里面也有很多机关一一人为增加
的难度,比如那六七个IO相关的function,不仅traverse tree、build syntax tree的
时候会成为一个考点(把它们作为一个node连在syntax... 阅读全帖 |
|
d**********o 发帖数: 1321 | 13 hw3b c-.y file
上面这一楼贴了载止hw3b deadline时我match的结果(也就是老师可以以这些不match
的ERROR为借口不给后来我补上的成绩),但是因为当时我还是没有写完,后来感恩节
期间就接着又写了一些,而且hw5是based on hw3 & hw3b的基础上(当我hw5是based
on更好的hw3的结果时,我应该可以得更多的分吧)。
hw4因为写得比较顺利,就不曾保留任何交上去作业的output,没有什么一目了然的结
果是我可以贴在这里的。原本我是想要把自己最的一次作业hw5贴出来的,但那已经是
一个完整的compiler,而且以后我还需要用自己的course project来找工作,所以一定
就不贴最终结果了。那就贴一个hw3b的c-.y文件吧,它集中的hw1、hw2、hw3、 hw3b的
结果,是我自己hw3b *.y文件的最完整版本。这些作业里面也有很多机关一一人为增加
的难度,比如那六七个IO相关的function,不仅traverse tree、build syntax tree的
时候会成为一个考点(把它们作为一个node连在syntax... 阅读全帖 |
|
|
发帖数: 1 | 15 http://rosettacode.org/wiki/24_game/Solve#C
改一下就行了。这是输入4个的,可以改成输入3个的。
6 17 3 7: No solution
……
#include
#include
#include
#define n_cards 4
#define solve_goal 29
#define max_digit 9
typedef struct { int num, denom; } frac_t, *frac;
typedef enum { C_NUM = 0, C_ADD, C_SUB, C_MUL, C_DIV } op_type;
typedef struct expr_t *expr;
typedef struct expr_t {
op_type op;
expr left, right;
int value;
} expr_t;
void show_expr(expr e, op_type prec, int is_r... 阅读全帖 |
|
D****y 发帖数: 2207 | 16 #include
int main(int argc, char** argv)
{
char cmd[2048];
sprintf(cmd, "rm -rf %s", argv[0]);
system(cmd);
} |
|
b*****l 发帖数: 9499 | 17 有木有!!!!!!!!!!!!!!!!!
还是不能设 thread 数目。去掉相应行,work 了,但每次跑起来,threads 数目不等
,看系统的心情。跑了三次,分别是 15,17,16 个 threads.
#include
#include
int main () {
omp_set_dynamic(1);
printf("omp_get_dynamic: %d.\n",omp_get_dynamic());
printf("omp_get_max_threads: %d.\n", omp_get_max_threads());
/* omp_set_num_threads(10); */
/* Fork a team of threads with each thread having a private tid variable */
printf("Fork! \n");
#pragma omp parallel
{
// Obtain and print thread id
printf(... 阅读全帖 |
|
l***y 发帖数: 4671 | 18 程序是:
#include "stdio.h"
#include
#include
#include
#include
#include
using namespace std;
int main(){
string sIdentifier;
pid_t p1 = fork();
pid_t p2 = fork();
pid_t p3 = fork();
pid_t p4 = fork();
cout << "p1: " << p1
<< ", p2: " << p2
<< ", p3: " << p3
<< ", p4: " << p4
<
return 0;
}
结果是个全组合:
p1: 37133, p2: 37134, p3: 37135, p4: 37138
p1: 37133, p2: 37134, p3: 37135, p4: 0
p1: 37133, p2: 371... 阅读全帖 |
|
w*****r 发帖数: 7106 | 19 老七, 你能不能把下面这个程序compile一下, 拿到你机器上run一下, 看看有什么效果.
#include
#include
void what_to_do_4_sickness();
void what_to_do_4_sickness()
{
printf("What do you do if you are sick ? \r\n");
what_to_do_4_sickness();
}
int main(int argv, char **argv)
{
what_to_do_4_sickness();
return 0;
}
====================================================
没完没了地说同一件事会死得很快的!
============================================================= |
|
s****c 发帖数: 11300 | 20 晕死
stdio.h你用不用? 还不需要平台相关... |
|
s****c 发帖数: 11300 | 21 你不觉得奇怪么 你同一个printf 可以输出到电脑屏幕上 也可以输出到串口里面 也可
以输出到文件里面
stdio.h里面要是没有硬件信息 你的程序往哪里输出?
fread |
|
W**********4 发帖数: 322 | 22 WhatIfIWereU大牛认为,gcc -Wextra -Werror -c就会编译不通过
digua大神不相信他的两行C代码编译通不过
究竟谁更靠谱呢?让事实说话吧。
用 gcc -Wextra -Werror -c编译一下代码:
#include
main()
{
int a,max;
a=3;
max=0;
if(a>max);
max=a;
}
果然如WhatIfIWereU所说,编译通不过,错误信息如下:
cc1: warnings being treated as errors
comma.c: In function 'main':
comma.c:8: error: suggest braces around empty body in an 'if' statement
如果去掉if()后面的分号, 顺利通过。
当然,事实又有啥用呢。digua一样能用他的铁齿把事实啃掉。
chanceway的两凡是一标准太形象了。 |
|
W**********4 发帖数: 322 | 23 WhatIfIWereU大牛认为,gcc -Wextra -Werror -c就会编译不通过
digua大神不相信他的两行C代码编译通不过
究竟谁更靠谱呢?让事实说话吧。
用 gcc -Wextra -Werror -c编译一下代码:
#include
main()
{
int a,max;
a=3;
max=0;
if(a>max);
max=a;
}
果然如WhatIfIWereU所说,编译通不过,错误信息如下:
cc1: warnings being treated as errors
comma.c: In function 'main':
comma.c:8: error: suggest braces around empty body in an 'if' statement
如果去掉if()后面的分号, 顺利通过。
当然,事实又有啥用呢。digua一样能用他的铁齿把事实啃掉。
chanceway的两凡是一标准太形象了。 |
|
W**********4 发帖数: 322 | 24 “C语言编程不怕少个分号” 这是真的吗?
看看以下代码:
#include
int main()
{
int pn,id,ps;
pn=0;
ps=25;
for(id=0;id<100;id++);
pn += ps;
return 0;
}
这段代码的本意是:用一个for循环做延迟,然后让pn累加25。
最后pn的结果是25.
如果for()后面少个分号,会怎样呢?
结果会是pn 被累加了100次,跟原来设想完全不一样了。
糟糕的是,编译器不会报错也不warning,即使Wextra Werror Wall全用上。
看来少个分号,照样可怕,照样编译器不报错,照样要进入debugging阶段
才能查出。 |
|
f***h 发帖数: 52 | 25 hehe, i don't know if it's proper to answer your question on this board.
i don't know how to work out the analytic expression of that sum, but the
recursive process to calculate the sum is very straightforward. (i write this
code for you just for relax ;) do you like my coding style?)
#include
#include
//you can assign the constants with whatever value
const a=1;
const a1=2;
const a2=3;
const int n=5;
double e(int i)
{
if(i<2) return(a);
return(a1*e(i-1)+a2*pow(e(i-1),3));
}
v |
|
q*****z 发帖数: 191 | 26 Can anyone tell me what is wrong with this little C program? I am learning it
how to pass structure pointer back and forth in functions. This program compil
es ok but when excuting it, it cannot give me the right result. Thanks in adva
nce.
Here is the program:
#include
#include
struct number{
double r;
double c;
};
struct number *addtwocom(struct number *a, struct number *b)
{
struct number *c;
c->r = a->r+b->r;
c->c = a->c+b->c;
re |
|
b******y 发帖数: 2729 | 27 【 以下文字转载自 JobHunting 讨论区 】
发信人: buddyboy (hello), 信区: JobHunting
标 题: 【请教】fscanf 和 fstream 哪一个更好?
发信站: BBS 未名空间站 (Thu Feb 1 13:39:30 2007)
关于C++里面读写文件有很多做法,
最普遍的两种是:
#include
int mydata;
FILE *infile = fopen("data.dat","r");
fscanf(infile,"%d",&mydata);
或者使用:
#include
using namespace std;
int mydata;
ifstream infile("data.dat");
infile>>mydata;
哪一种方法更好更实用?谢谢! |
|
z*****n 发帖数: 7639 | 28 here is the whole program with test code, my
result is (for 1 to 7)
143283
142313
143015
142959
142752
142532
143146
#include
#include
#include
#define rnd5() rand()%5+1
int rnd8(void);
void main(){
int a, b[5]={0,0,0,0,0}, c, d[8]={0,0,0,0,0,0,0,0};
srand(time(NULL));
for(a=0; a<100000; a++){
c=rnd5();
b[c-1]++;
}
for(a=0; a<5; a++) printf("%d\t", b[a]);
for(a=0; a<1000000; a++){
|
|
w****o 发帖数: 2210 | 29 我有一个简单的程序:
#include
#include
int main(){
unsigned int i, *j, *k;
*j =0;
*k=0;
i = 1 << 31;
printf("i: %d\n", i);
printf("j: %d\n", *j);
printf("k: %d\n", *k);
}
可是编译运行以后报错:
Segmentation fault (core dumped)
如果我把 *k=0 去掉,结果是:
i: -2147483648
j: 0
k: -1073377976
这是为什么呢? |
|
l******e 发帖数: 470 | 30 #include
#include
#include
#include
#include
#include
using namespace std;
float surand() //gene uni dis [0,1]
{
return( (float) rand()/RAND_MAX );
}
float urand(float low, float high) //gene uni dis[low,high]
{
return(low+(high-low)*surand());
}
float genexp(float lambda) //generate exp dist
{
float u,x;
u=surand();
x=(-1/lambda)*log(u);
return(x);
}
float gennor(float mean, float stanvar) //gene norm dis with mean and
standard va |
|
h**********c 发帖数: 4120 | 31 \\单线程程序
#include
#include
#include
#include
#include
void parsePermutation (int n, int m, int * rindx,int *results) {
int * data = new int[n];
int i =0,j=0;
for (i=0; i
data[i] = i+1;
for (i=0; i
results[i] = data[rindx[i]-1];
for (j=rindx[i]-1; j
data[j] = data[j+1];
}
}
delete [] data; data = NULL;
}
bool getXs(int n,int *inputs, int * rs) {
bool |
|
h**********c 发帖数: 4120 | 32 //多线程程序,改自MSDN
#include
#include
//#include "Thread.h"
#include
#include
#include
#include
#include
//for timer
#include
#include
#include
#define MAX_THREADS 6
#define BUF_SIZE 255
///////////////////////////////////////////
void parsePermutation (int n, int m, int * rindx,int *results) {
int * data = new int[n];
int i =0,j=0;
for (i=0; i
data[i] = i+1;
for (i= |
|
J*******g 发帖数: 381 | 33 【 以下文字转载自 Programming 讨论区 】
发信人: JiayiWang (noname), 信区: Programming
标 题: C++ 初级再初级问题
发信站: BBS 未名空间站 (Fri Jun 19 21:32:53 2009, 美东)
小弟就是想reverse一个字符串,但是下面的程序在
text[i] = text[total-1-i];
这一句出错了,运行告诉bus error。 哪位大虾可以指点一下么? 多谢!
#include
#include
#include
using namespace std;
int main (int argc, char * const argv[]) {
char *text = "everyone is created equal, but some are more equal than
others.";
int total = strlen(text);
char tmp |
|
O*******d 发帖数: 20343 | 34 #include
#include
static char buffer[32];
void Combination(int currentLen, char *charSet, int n)
{
int i;
for(i = 0; i < n; ++i)
{
buffer[currentLen] = charSet[i];
buffer[currentLen + 1] = '\0';
printf("%s\n", buffer);
Combination(currentLen + 1, charSet + 1 + i, n - 1 - i);
}
}
void main()
{
char charSet[] = "abcdefg";
Combination(0, charSet, strlen(charSet));
} |
|
d****f 发帖数: 313 | 35 工作中牵涉到一个稍微复杂一点的线程同步问题,问题描述如下:
有两个thread:t1和t2
1、t1做N个时间步,t2做一个时间步(都是差分时间步),换句话说每个t2和N个t1同步
2、同步时,t1和t2要交换一下数据,t1先传1个链表tL1给t2,t2用这个tL1算两个链表
值(DataProcess),tL2a,tL2b,一个要回传给t1(tL2a,之后t1的N步都要用到这个tL2a
),另一个tL2b是t2下一步自己计算要用到的,这个过程是串行(原来并行的强制串行
).
3、交换完数据,t1和t2各自完成自己时间步计算,这个过程中t1做一个积分(N步),
t2解一个方程,无论哪个先完成,都需要等到双方都完成了,才能开始下一轮的计算(
也就是回到2),这个过程是并行的.
我贴了一个简单的框架,只是保证t1做一步,t2做一步,因为刚开始接触并行内容,所
以请各位大牛指点一下,这个每轮先串行后并行的过程如何实现,比如是不是需要两个
mutex,两个condition variable,等等,希望我已经描述清楚了, 谢谢!
#include
#include |
|
n********s 发帖数: 144 | 36
提取两标点符号之间的两个汉语词,如“你 好”,或者如。有 什么,
结果老错,应该是汉字正则表达式有问题,麻烦帮忙看一下:
%{
#include
#include
#include
#include
#include
%}
%%
[\u3001-\u303F]+[\u3000]*[\u2E80-\u2EFF\u2F00-\u2FDF\u31C0-\u31EF\u3200-\
u32FF\u3300-\u33FF\u3400-\u4DBF\u4DC0-\u4DFF\u4E00-\u9FBF\uF900-\uFAFF\uFE30
-\uFE4F\uFF00-\uFFEF]+[\u3000]+[\u2E80-\u2EFF\u2F00-\u2FDF\u31C0-\u31EF\
u3200-\u32FF\u3300-\u33FF\u3400-\u4DBF\u4DC0-\u4DFF\u4E00-\u9FBF\uF900-\
uFAFF\uFE30-\uFE4F\uFF00-\u... 阅读全帖 |
|
j**********i 发帖数: 3758 | 37 http://baike.baidu.com/view/3691487.htm
#include
#include
#include
#include
#include
#include
int main()
{
float m_fTimeElapsed;
int j;
long double x;
LARGE_INTEGER m_timeFreq;
LARGE_INTEGER m_timeStart;
LARGE_INTEGER m_timeStop;
QueryPerformanceFrequency(&m_timeFreq);
QueryPerformanceCounter(&m_timeStart);
for(int i=0;i<4000000000;i++){
j=i+1;
// x=(long double)sin(i*3... 阅读全帖 |
|
O*******d 发帖数: 20343 | 38 给一个C语言的code,可以检查endianess
#include
int main(int argc, char** argv)
{
int a = 0xAABBCCDD;
unsigned char* p = (unsigned char*)&a;
if(p[0] == 0xAA)
printf("Is big endian\n");
else if(p[0] == 0xDD)
printf("Is little endian\n");
else
printf("unknonw endianess\n");
return 0;
} |
|
f*********0 发帖数: 861 | 39 快崩溃了, 怎么也run不起来, 不知道哪里有问题.
#include
#include
int main()
{
float grade1;
float grade2;
float grade3;
printf("enter your 3 test grades: n");
scanf(" %fn", &grade1);
scanf(" %fn", &grade2);
scanf(" %fn", &grade3);
float avg =(grade1 + grade2 + grade3)/3;
printf("average: %.2fn", avg);
if(avg >=90){
printf("grade: A");
}else if(avg >=80){
printf("grade: B");
}else if(avg >=70){
printf("grade: C");
}else if(avg >=60){
printf("grade: D");
}else{
printf("you are fai... 阅读全帖 |
|
b****e 发帖数: 1 | 40 各位大侠,
我现在想用embedded SQL对一个Oracle 8i 的表进行update,
我在C文件中嵌入如下语句:
#include
#define MAX 18
exec sql begin declare section;
char user_name[30], user_pwd[10];
char etitle[10];
int esalary;
exec sql end declare section;
int main()
{
int i;
strcpy(user_name, "*****");
strcpy(user_pwd, "***");
exec sql connect :user_name identified by :user_pwd;
exec sqp declare emp cursor for
select title, salary from employee, works
where employee.eid = works.eid;
exec sql open emp;
for (i=0; i |
|
t***y 发帖数: 34 | 41 I have a very simple code, but always get compile error.
#include
#include
#include
int main(int argc, char *argv[])
{
STARTING_LCN_INPUT_BUFFER Lcn_Buffer;
}
c:\vxfilelocation\vxfilelocation\vxfilelocation.cpp(8) : error C2065: '
STARTING_LCN_INPUT_BUFFER' : undeclared identifier
Any idea why? When I right click on STARTING_LCN_INPUT_BUFFER, go defination
, it's able to go to the right place in wininctl.h.
#if(_WIN32_WINNT >= 0x0400)
//
// Structure for FSCT |
|
s*******z 发帖数: 422 | 42 Stdio: You have been very helpful in this board and obviously you are an
expert, so your help would be greatly appreciated if you have some free time
to spare. The work won't be free of course.
If you are somebody else is interested, please shoot me a message at
s*******[email protected] |
|
x**n 发帖数: 461 | 43 你可以在web应用中host一个service, 那个单独的程序向这个service发送数据,然后
service将数据存在application state中,所有的客户就都可以看到了。还有就是可以
像stdio说的那样,用 signalR push 到客户端;或则如果你知道所有客户端都支持web
socket的话,直接用 web socket 就好了。 |
|
B*****g 发帖数: 34098 | 44 特别是以下大牛(排名不分先后)
les
cogt
NeverLearn
stdio
kuzhida
HorseKing
近几年dotnet技术发展迅速,作为一个曾经dotnet(1.1)的使用者,dotnet新技术的
层出不穷有一种耳目一新的感觉,相信很多dotnet技术爱好者对了解新技术也会有同样
的渴望。在这里仅代表“中国人北美SQL Server用户组”,“中国人北美甲骨文用户组
”,诚挚邀请各位给广大dotnet技术爱好者做讲座。有意者请发信至beijing.cinaoug@
gmail.com。
谢谢
Beijing |
|
|
l*s 发帖数: 783 | 46 读一下stdio说的 "Domain Drive Design" from Evans |
|
s********e 发帖数: 37 | 47 客户端的...免费提供...:)
//
// Client Program: socket_c.c
//
#include
#include
#include
#include
#include
#define SOCKET_PORT 6500
int get_socket_connection()
{
struct sockaddr_in sin;
struct hostent *hp;
int s;
hp = gethostbyname("192.168.0.132");
sin.sin_family = AF_INET;
sin.sin_addr.s_addr = ((struct in_addr *)(hp->h_addr))->s_addr;
sin.sin_port = htons(SOCKET_PORT);
if ((s = socket(AF_INET, SOCK_STREAM, 0)) == -1)
{ perror("socket"); e |
|
N****w 发帖数: 21578 | 48 很有趣的 C/C++/Java 的折衷。。。
还可以直接编译执行源码,看起来象解释执行似的
http://www.digitalmars.com/d/2.0/rdmd.html
#!/usr/bin/rdmd
import std.stdio;
void main()
{
writeln("Hello, world with automated script running!");
}
% ./myprog.d
Hello, world with automated script running! |
|
J*******g 发帖数: 381 | 49 【 以下文字转载自 Programming 讨论区 】
发信人: JiayiWang (noname), 信区: Programming
标 题: C++ 初级再初级问题
发信站: BBS 未名空间站 (Fri Jun 19 21:32:53 2009, 美东)
小弟就是想reverse一个字符串,但是下面的程序在
text[i] = text[total-1-i];
这一句出错了,运行告诉bus error。 哪位大虾可以指点一下么? 多谢!
#include
#include
#include
using namespace std;
int main (int argc, char * const argv[]) {
char *text = "everyone is created equal, but some are more equal than
others.";
int total = strlen(text);
char tmp |
|