includestdio.hint main

2020-12-29 15:50:17 字数 2624 阅读 3689

1楼:匿名用户

用双引号表示先在当前程序所在的目录查找所包含的文件,一般在要包含自己写的文件时使用

用尖括号表示先在系统目录查找所包含的文件,一般在要包含系统头文件时使用

#include int main() { printf("hello world!\n"); return 0 ; } 10

2楼:知影潇湘

没错吧#include谨春

int颂缺main()

#include #include int main() { int iscore; printf("请输入学生的成

3楼:匿名用户

你就直接bai

用评级这两个汉字?du

你在一开始声zhi明char grade;

然后在dao

每个专if的语句块中加上grade = 'a'等等。

然后在switch这里属就用grade.

switch(grade)

把char 评级;

scanf("%s",&评级);

printf("评价:");都去掉就直接上下连接了。

4楼:匿名用户

原**的问题:1.switch后面加了分号";";2.不能用中文作为变量名;

#include

#include

intmain()

elseif(iscore>=80)

elseif(iscore>=70)

elseif(iscore>=60)

else

printf("评价:");

switch(cgrade)

return0;}

#include int main() {printf("******very good********); return 0;}

5楼:匿名用户

^#includeintmain()

^这少了"

#include int main() { printf("我喜欢c语言"); return 0; }

6楼:匿名用户

程序没有错。关闭编译器然后重新运行试试。(#include要单独作为一行)

7楼:匿名用户

是不是编译器出现了问题,vc6.0编的?建议把其他文件都删掉,将cpp文件重新命名再编译,另外注意格式,该换行就换行,有利于检查程序

8楼:萢萢

你的**没有错误,如果可以,把你的错误信息截图发出来看一看。

c语言问题:#include int main() { printf("\" ***xx"\"); return 0; }

9楼:洛雨曦

#include

int main()

10楼:

你让辩想裂滚表达什么意思

#include 《坦源缺stdio.h>

int main()

11楼:匿名用户

#include 慎握袭

int main()

12楼:匿名用户

输出:"***xx"

13楼:匿名用户

运行结果应该为:在屏幕上输出\×××××\,返回值为0

初学c++,编写简单程序如下: #include int main() { printf("hello world!\n"); }

14楼:匿名用户

stdio.h这个

是标准c的头文罩模件,你的printf是标准c的io函数,在这个头文件中声明。

而isotream是标准c++的io流,内标准c++的io流不容是用printf的,而是用流操作物脊缓符cin和cout。

所以你用printf输出字符串,如果#incllude包含头野槐文件肯定不行,因为这这里没有printf的定义。

15楼:匿名用户

vc++6.0跟window7不兼容的、、运行不起。姿敏滚。可迹余能不是你程序的错误拿渗。。。你把程序发出来看看。。。

16楼:

#incllude

为什么双写“l”?

17楼:匿名用户

为何不帖**,直接点好不?

#include int main() { printf("hello 5

18楼:匿名用户

事实上,这里是输出宏null值

输出为0

因为null被定义为

的#define null 0

也被定义为

的#define null((void *)以0)表示是空指针

mainint i,x,main() { int i, x[3][3] = {1, 2, 3, 4, 5, 6, 7, 8, 9}; for(i = 0; i < 3; i++) printf("%d

1楼 匿名用户 二维数组在内存中是如下存储的,按行进行存储的x 0 0 9 x 0 1 8 x 0 2 7x 1 0 6 x 1 1 5 4x 2 0 3 2 1其实也可以看做一维数组的存储 x 0 x 8 x 0 9 x 1 8 x 8 1 因为存储的时候都是一样的 p指向的是 x 1 1 也就是...