摘要:
#include <stdio.h>//打印成绩//0-59,不及格//60-79,及格//80-94,良好//95-100,优秀//其他,非法数据int main(void){ int score; //这个是int整数型,定义char型会出错 //加了while(1)函数,无限循环,按“ctrl 阅读全文
摘要:
1、编译过程中无法编译,需要用C99,解决方法: -std=c99 2、for循环:不加分号“;”,写错编译器可以通过编译但输出数据和理想中不符合 错误写法:for(;;;);{ } 正确写法:for(;;;){ } exercise.c:13:24: warning: comparison bet 阅读全文
摘要:
#include <stdio.h>int main(void){ int tmp; printf("今天的天气是多少度?\n"); scanf("%d",&tmp); if(tmp>16 ){ printf("出行!\n"); } return 0;} #include <stdio.h>#inc 阅读全文
摘要:
#include <stdio.h>int main(void){ int xc; int zv; printf("请输入 :"); scanf("%d",&xc); printf("请输入:"); scanf("%d",&zv); if (xc >= 100 && zv >= 10) { prin 阅读全文
摘要:
#include <stdio.h>#include <string.h>int main(void){ char min[32] = "love"; char mic[32]; int ad; printf("请输入:"); fgets(mic,sizeof(mic),stdin); ad = s 阅读全文
摘要:
#include <stdio.h>#include <string.h>int main(void){ char min[32] = "love"; char mic[32]; int ad; printf("请输入:"); gets(mic); //通过顺序比较,通过的ASCII码大小来判断输出 阅读全文
摘要:
/*1-2-1-19 优化-程序进行中 此次优化加入了,while(1)循环,system(“cls”)终端清屏指令,system(“pause”)终端暂停指令*/ #include <stdio.h> int main(void){ char admin[32] = "amdin"; char p 阅读全文
摘要:
#include <stdio.h>int main(void)/*通过数组来实现5个整数的平均值*/{ int data[64]; float average; printf("请输入5个整数:"); scanf("%d%d%d%d%d",&data[0], &data[1],&data[2],& 阅读全文
摘要:
C语言: 1、printf 标准输出; 2、scanf 标准输入; 3、char 字符型 %c; int 整型 %d; float 单精度 %f; 4、gets 输入; 5、fgets 输入,防止输入越界; 6、if语句(如果……) 7、while(1){ 条件…… } /*#include <st 阅读全文
摘要:
/*#include <string.h> 1、strlen 计算字符串长度; 2、strcop 拷贝; 3、strncop 拷贝指定数量的字符; 4、shrcat 连接字符串;*/ #include <stdio.h>#include <string.h>int main(void){ char 阅读全文