发布时间:2014-12-29 11:49:45
点击(此处)折叠或打开#include <stdio.h>int is_leapyear(int year){ int flag=0; if(year%400==0 ||(year%100!=0 && year%4==0)) &.........【阅读全文】
发布时间:2014-12-26 14:44:06
点击(此处)折叠或打开#include <stdio.h>#include <math.h>int main(){ double a, b, c; double j, i, k, t; &.........【阅读全文】
发布时间:2014-12-26 14:26:48
点击(此处)折叠或打开#include <stdio.h>int main(){ char big[26],small[26]; char i,j; int k; i ='a';.........【阅读全文】
发布时间:2014-12-22 11:30:44
点击(此处)折叠或打开#include <stdio.h>int is_primer(int num){ int i; int flag = 1; for(i=2; i<num/2; i++) .........【阅读全文】