摘要: #include <assert.h> //设定插入点#include <ctype.h> //字符处理#include <errno.h> //定义错误码#include <float.h> //浮点数处理#include <fstream.h> //文件输入/输出#include <iomani 阅读全文
posted @ 2018-01-13 00:03 咻_python 阅读(480) 评论(0) 推荐(0) 编辑
摘要: 定义变量 int i; 也可以 int i,num; 赋值,c必须先定义变量再赋值 num = 0; 循环for for(i=1; i<=0; i++) { printf("%d \n", i); #不解释,和python用法差不多 } 循环while while(i<=10) { printf(" 阅读全文
posted @ 2018-01-13 00:02 咻_python 阅读(201) 评论(0) 推荐(0) 编辑