簡單編碼 sdut oj

2021-07-26 17:47:30 字數 730 閱讀 9409

time limit: 1000ms

memory limit: 65536kb

problem description

將一串文字譯成密碼,密碼的規律是:

將原來的小寫字母全部翻譯成大寫字母,大寫字母全部翻譯成小寫字母,數字的翻譯規律如下:

0——>9 

1——>8 

2——>7 

3——>6 

4——>5 

5——>4 

6——>3 

7——>2

8——>1 

9——>0 

然後將所有字元的順序顛倒。

input

輸入一串文字,最大字元個數不超過100。

output

輸出編碼後的結果。

example input

china

example output

anihc

hint

author

#include#includeint main()

else if(a[i] >= 'a' && a[i] <= 'z')

else if(a[i] >= 48 && a[i] <= 57)

}for(i = n - 1; i >= 0; i--)

printf("\n");

return 0;

}

簡單計算 sdut oj

time limit 1000ms memory limit 65536kb problem description 接受從鍵盤輸入的n個整數,輸出其中的最大值 最小值和平均值 平均值為整除的商 input 第一行乙個正整數n n 100 第二行有n個用空格隔開的整數ti 1 i n,0 ti 10...

SDUT OJ 2616 簡單計算

time limit 1000ms memory limit 65536k 有疑問?點這裡 某天,xx 給yy 出了一道題,題目是 給出n 個十進位制的數,找出這 n 個數的二進位制表示中 1 的個數最少的數。由於yy 的計算能力很差,所以他想讓你幫他寫個程式來計算出來。輸入的第一行為乙個正整數 t...

簡單列舉型別 植物與顏色 sdut oj

time limit 1000ms memory limit 65536kb problem description 請定義具有red,orange,yellow,green,blue,violet六種顏色的列舉型別color,根據輸入的顏色名稱,輸出以下六種植物花朵的顏色 rose red pop...