摘要: #include<stdio.h>#include<string.h>int substring(char *str,char *str1);//函数原型int main(void){char str[64]={0};char str1[16]={0};int i,j,x;printf("pleas 阅读全文
posted @ 2016-12-25 14:44 legenda 阅读(11934) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h>int main(){ int i=0; while (++i) { if(i==10) break; if(i%3!=1) continue; printf("%d",i); }} 输出147 阅读全文
posted @ 2016-12-25 10:35 legenda 阅读(368) 评论(0) 推荐(0) 编辑