若您覺得文章寫得不錯,請點選文章上的廣告,來支持小編,謝謝。
閏年不算的話,一年有365天,那365有什麼特別之處?
首先 \( 365 = 100 + 121 + 144 = 10^2 + 11^2 + 12^2 \)
並且 \( 365 = 169 + 196 = 13^2 + 14^2 \)
那麼 \( \large \frac{10^2 + 11^2 + 12^2 + 13^2 + 14^2}{365} = ? \)
答案為2。
程式設計可以改變您的未來(Programming can change your future)。 雲林SONG 全名為雲林軟體工程(SOftware eNGineering),目標致力於軟體人才的培養並推廣開源軟體落實於資訊教育。程式設計的觀念是軟體產品的基礎,程式碼就像沙子一樣,要紮實,所建立出來的高塔才會穩固。本站也提供資訊教育相關的教學資源。 YunlinSONG stands for Yunlin SOftware eNGineering, offering tutorial for computer programming and promoting open-source software. Teaching resources in information technology education are provided here.
▼
高中生程式解題系統:明明愛明明
若您覺得文章寫得不錯,請點選文章上的廣告,來支持小編,謝謝。
題目連結 http://zerojudge.tw/ShowProblem?problemid=a224。
演算法:
程式碼:
題目連結 http://zerojudge.tw/ShowProblem?problemid=a224。
演算法:
算出不分大小寫的26各英文字母(a-z)各自出現的次數letterCnt[26]。
算出字母各自出現的次數letterCnt[26]為奇數的有幾個oddCnt 。
若oddCnt 大於1,則無法重新排列成回文。
程式碼:
#include <cmath>
#include <cstdio>
#include <cstring>
using namespace std;
int main(void){
char str[1000];
while(scanf("%s", &str) != EOF)
{
char letterCnt[26] = {0};
bool isPal = true;
int oddCnt = 0;
int len = strlen(str);
for(int i = 0; i < len; i++)
{
char c = str[i];
if(c >= 'A' && c <= 'Z')
{
letterCnt[c - 'A'] += 1;
}
else if(c >= 'a' && c <= 'z')
{
letterCnt[c - 'a'] += 1;
}
}
for(int i = 0; i < 26; i++)
{
if(letterCnt[i] % 2 == 1)
{
oddCnt++;
}
if(oddCnt >= 2)
{
isPal = false;
break;
}
//printf("%d\t", letterCnt[i]);
}
if(isPal == true)
printf("yes !\n");
else
printf("no...\n");
}
return 0;
}