C 的循环语句
程序代码:
#include <stdio.h> int main(void) { printf("\n***************"); for(int count=1;count<=8;++count) { printf("\n* *"); printf("\n***************\n"); } return 0; }
D:\VS测试文件\day161\c.c(5) : error C2143: syntax error : missing ';' before 'type'
D:\VS测试文件\day161\c.c(5) : error C2143: syntax error : missing ';' before 'type'
D:\VS测试文件\day161\c.c(5) : error C2143: syntax error : missing ')' before 'type'
D:\VS测试文件\day161\c.c(5) : error C2143: syntax error : missing ';' before 'type'
D:\VS测试文件\day161\c.c(5) : error C2065: 'count' : undeclared identifier
D:\VS测试文件\day161\c.c(5) : warning C4552: '<=' : operator has no effect; expected operator with side-effect
D:\VS测试文件\day161\c.c(5) : error C2059: syntax error : ')'
D:\VS测试文件\day161\c.c(6) : error C2146: syntax error : missing ';' before identifier 'printf'
根据这错误提示说类型有错误,不懂那里有错,本人刚学C,请大家指点......