摘要: 1、编译过程中无法编译,需要用C99,解决方法: -std=c99 2、for循环:不加分号“;”,写错编译器可以通过编译但输出数据和理想中不符合 错误写法:for(;;;);{ } 正确写法:for(;;;){ } exercise.c:13:24: warning: comparison bet 阅读全文
posted @ 2019-01-20 19:37 指遥 阅读(120) 评论(0) 推荐(0) 编辑
摘要: C语言: 1、printf 标准输出; 2、scanf 标准输入; 3、char 字符型 %c; int 整型 %d; float 单精度 %f; 4、gets 输入; 5、fgets 输入,防止输入越界; 6、if语句(如果……) 7、while(1){ 条件…… } /*#include <st 阅读全文
posted @ 2019-01-10 14:15 指遥 阅读(112) 评论(0) 推荐(0) 编辑
摘要: 1、cmd命令指示符窗口运用的:dir 查看当前目录下的文件,cls 清屏,cd c:\程序 切换到C盘程序文件 2、电脑运用:win+D 所有打开的窗口全部缩小,显示桌面。 阅读全文
posted @ 2019-01-07 14:06 指遥 阅读(85) 评论(0) 推荐(0) 编辑
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2019-01-05 11:56 指遥 阅读(3) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h>#include<windows.h>#include<string.h>int main(void){ char name[32]; char password[32]; FILE*data; char name_tmp[32]; char password_tm 阅读全文
posted @ 2019-02-21 22:32 指遥 阅读(296) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h>#include<windows.h>int main(void){ FILE*data; data=fopen("C:\\teacher.txt","a");//"a"尾部追加一个“写”的功能 if(!data){ //!data等效于 data == NULL 阅读全文
posted @ 2019-02-19 22:08 指遥 阅读(284) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h>#include <windows.h>int main(void){ FILE *a; a=fopen("C:\\student.txt","r"); if(!a){ printf("文件错误!"); }else{ printf("文件打开成功!\n"); sy 阅读全文
posted @ 2019-02-13 15:09 指遥 阅读(154) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h>int main(void){ FILE*file; file = fopen("C:\\test.txt","a"); if(!file){ printf("文件打开失败!"); } fputs("\n大时代 123456989",file); system(" 阅读全文
posted @ 2019-01-28 14:44 指遥 阅读(145) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h>#include<string.h>int main(void){ char a[256]; int len,n,i,tem; printf("请输入:\n"); gets(a); printf("%s\n",a); len = strlen(a); n=len/2 阅读全文
posted @ 2019-01-25 11:39 指遥 阅读(170) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h>int main(void){ FILE*file; file = fopen("C:\\test","r"); if(!file){ //等效于:file ==NULL printf("打开文件成功!"); }else{ printf("打开文件失败!"); }  阅读全文
posted @ 2019-01-24 15:07 指遥 阅读(2138) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h>int main(void){ int n; int i; int num1,num2; int val; printf("请输入斐波那契数列长度:"); scanf("%d",&n); if(n<0){ printf("数值不存在!"); }else if(n== 阅读全文
posted @ 2019-01-24 14:55 指遥 阅读(345) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h>int main(void){ int a; int b; for(a=1;a<=9;a++){ for(b=1;b<=a;b++){ printf("%d×%d=%d\t",b,a,a*b); } printf("\n"); } return 0;} 阅读全文
posted @ 2019-01-22 13:23 指遥 阅读(154) 评论(0) 推荐(0) 编辑
摘要: /*遇到问题:1、编译过程中无法编译,需要用C99,解决方法: -std=c99 2、for循环:不加分号“;”,写错编译器可以通过编译但输出数据和理想中不符合 错误写法:for(;;;);{ } 正确写法:for(;;;){ } */ #include <stdio.h>int main(void 阅读全文
posted @ 2019-01-22 13:07 指遥 阅读(638) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h>#include <windows.h>int main(void){ int a; //定义一个整数型变量 for(a=1;a<8;a++){ printf("天上有%d颗星星!\n",a); Sleep(1000); //休眠1000毫秒=1秒,Windows 阅读全文
posted @ 2019-01-20 21:19 指遥 阅读(234) 评论(0) 推荐(0) 编辑