摘要:
#include #include #include #include using namespace std; unsigned int LunarCalendarDay; int gg1,gg2; int Year_first[10000];//每年第一天周几。 int day_first;//记录每月第一天是周几。 int a[13]={0,31,28,31,30,31,30... 阅读全文
摘要:
Input I like C++./I study C++./I am happy. output enter a sentence: I like C++./I study C++./I am happy. The string read with cin is:I The second part 阅读全文
摘要:
Points on LineDescription Little Petya likes points a lot. Recently his mom has presented him n points lying on the line OX. Now Petya is wondering in 阅读全文
摘要:
#include //必须包含的头文件 #include using namespace std; int main() { int n,a[100],m; int left,right,i; scanf("%d",&n);//设初始数组内元素有n个 for(i=0;i<n;i++) scanf("%d",&a[i]); scanf("%... 阅读全文