# include <stdio.h> void main char 2000=x if x/4=%0 if x/100!=%0 printf;“x是闰年” else i
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了# include <stdio.h> void main char 2000=x if x/4=%0 if x/100!=%0 printf;“x是闰年” else i相关的知识,希望对你有一定的参考价值。
错误 1 error C2470: “main”: 看起来像函数定义,但没有参数列表;跳过明显的函数体 c:\users\lenovo\documents\visual studio 2010\projects\11\11\00.cpp 3 1 11
2 IntelliSense: 应输入声明 c:\users\lenovo\documents\visual studio 2010\projects\11\11\00.cpp 3 1 11
怎么改
正在学 怎么改
追答函数后面有圆括号main()
每个语句后面分号结尾;
你还是先照书抄一遍吧
怎么了?
追答像python,又像c。。。表示我比较蛋疼
参考技术B 你不贴代码,怎么知道!是不是少了头文件,那个stdafx?追问
# include
void main
int 2000=x
if x/4=%0
if x/100!=%0
printf;“x是闰年”
else
if x/400=%0
printf;“x是闰年”
else
printf;“x非闰年”
end if
end if
else
printf ;“x非闰年”
end if
x+1=x
这是啥语言?
参考技术C 这代码,,no,这是代码么?童鞋,想要写代码还是得多努力哦chen
#include<stdio.h>
#include<unistd.h>
#include<sys/types.h>
#include<stdio.h> #include<unistd.h> #include<sys/types.h> #include<sys/stat.h> #include<dirent.h> #include<errno.h> #include<unistd.h> #include<pwd.h> #include<grp.h> #include<time.h> #include<glob.h> #include<string.h> #define BUFSIZE 100 //判断是否是 . .. 文件 int dot_dir(const char *path) { char *p = NULL; p = strrchr(path,‘/‘); if(p != NULL) { if(!strcmp(p,"/.")||!strcmp(p,"/..")) return 1; } return 0; } int myblock(const char *path) { struct stat cur_stat; int sum = 0; glob_t globres; char buf[BUFSIZE] = {}; int i; if (lstat(path,&cur_stat) < 0)//判断lstat函数是否成功 { // perror("lstat()"); return -1; } if(!S_ISDIR(cur_stat.st_mode))//判断是不是目录文件,不是直接输出大小 { return cur_stat.st_blocks; } //如果是目录 sum += cur_stat.st_mode;//本身也会有大小 strcpy(buf,path); strcat(buf,"/*");//目录下的所有文件 glob(buf,0,NULL,&globres); //隐藏文件 memset(buf,‘