迴圈
輸入字串
輸出前後項差距
#include <iostream>
#include <cmath>
using namespace std;
int main()
{
string str;
while(cin >> str)
{
for(int i= 0; i<6; i++)
cout << abs(str[i+1] - str[i]);
cout << endl;
}
return 0;
}
全站熱搜
留言列表