#include
int main()
system("pause");
return 0;
}2.寫程式求一元二次方程的解。
#define m 0.000001
#include
#include
int main()
if(n<0)
}system("pause");
return 0;
}3.練習:編寫**,演示多個字元從兩端移動,向中間匯聚。
#include
#include
int main()
;char arr2=;
int i=0;
int j=strlen(arr1)-1;
while(i<=j)
system("pause");
return 0;
}4.編寫**實現,模擬使用者登入情景,並且只能登入三次。
#include
int main()
else
}if(i==3)
system("pause");
return 0;
}5.在螢幕上輸出1,3,……11,13菱形圖案:
方法一#include
int main()
for(j=1;j<=2*i-1; j++)
printf("\n");
}for(i=n; i>0; i--)
for(j=2*i-1; j>0; j--)
printf("\n");
}system("pause");
return 0;
}方法二
#include
int main()
;char arr2=;
char arr3=;
int i=strlen(arr1)/2;
int j=strlen(arr2)/2;
while(i>=0)
i=0;
j=12;
while(i<=j)
system("pause");
return 0;
}6.求出0~999之間的所有「水仙花數」並輸出
#include
#include
int main()
if(sum==i)
sum=0;
}system("pause");
return 0;
}7.求sn=a+aa+aaa+aaaa+aaaaa的前5項之和,其中a是乙個數字
#include
#include
int main()
printf("%d\n",sum);
system("pause");
return 0;
}
今日學習之aop,DI,docker
中午看spring實戰書,兩頁,所講為依賴注入和aop兩大特性的由來以及優越性。面向切面程式設計可以讓事務,安全,等這些一般系統中共有的非核心功能模組與要開發的核心業務功能進行分離,解耦。舉個例子,好多類中都涉及安全問題,難不成要將安全相關的 或方法在每個類中拷貝乙份嗎?且就算可以,但後期也不易維護...
10 9學習總結
先補上前兩天的學習總結,假裝現在是10.9.今天覆習了hja的講課內容,總結出重要的有3點,第一點是比賽的對於long long int的應用,如下 ifdef win32 define lld i64d else define lld lld endif int main 第二點是關於noip 2...
今日學習之Hibernate 二
1.問題 org.hibernate.exception.genericjdbcexception could not execute jdbc batch update at org.hibernate.解決辦法 設定對應方言,把下圖修改為org.hibernate.dialect.mysql5d...