c++
本帖最后由 金倩倩的美梦 于 2021-11-3 14:43 编辑#include <stdio. h>
int maino
{int a=2, b=6, c=4;
c=a+b;
printf("%d, c);
return 0
}
运行结果为
谢谢,新手 这程序可以运行? 本帖最后由 金倩倩的美梦 于 2021-11-3 14:44 编辑
r 人造人 发表于 2021-11-3 14:26
这程序可以运行?
写错了{:10_266:} 金倩倩的美梦 发表于 2021-11-3 14:32
写错了
x.c:1:10: fatal error: stdio. h: No such file or directory
1 | #include <stdio. h>
| ^~~~~~~~~~
compilation terminated.
本帖最后由 村里小黑 于 2021-11-3 16:58 编辑
C
#include<stdio.h>
int main()
{
int a=2, b=6, c=4;
c=a+b;
printf("%d", c);
return 0;
}
C++
#include <iostream>
using namespace std;
int main() {
int a=2, b=6, c=4;
c=a+b;
cout<< c;
return 0;
}
有错误
页:
[1]