变量 c 没定义
少了分号 英文下的 ;
Cpp1.exe - 1 error(s), 0 warning(s)问题补充:匿名 2013-05-23 12:21:38 cpp1.exe - 1个错误(S),警告(0) 匿名 2013-05-23 12:23:18 cpp1.exe-1错误(s),0警告(s) 匿名 2013-05-23 12:24:58 Cpp1.exe - 1个错误(s), 0次警告(s) 匿名 2013-05-23 12:26:38 Cpp1...
第12行的括号写成中文字符了,21行的分号也是这个问题。
已经没有这么老的编译器了:)你可以看看你中间那张图“目录”选项下的include files下拉框中有没有executable files之类的选项,可能在那儿改
include<stdio.h>int main(){ int a,b; a=10; b=a+20; printf("b=%d\n",b); return 0;}
std::cout < < "Hello world!" < < std::endl; // C++风格的教科书写法, <<是这样的不是有空格的。也要注意中英语的输入法。std:cout<<"hello world!"<<std:endl;或者在最前面加上using namespace std;
打开.dsw文件(VC),然后点击运行,应该可以看到出错的信息,修改一下就可以了!
这里我就不多说了,太简单的东西没意思,先看个例子简单感受了,你只需知道的是basic走的是http协议就好了,传输消息为soap。 1. 契约 1 using System.Runtime.Serialization; 2 using System.ServiceModel; 3 4 namespace MyService 5 { 6 [ServiceContract] 7 public interface IHomeService 8 { 9 [OperationCon...