HDUOJ Quicksum
Posted daishuss
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HDUOJ Quicksum相关的知识,希望对你有一定的参考价值。
#include<iostream> #include<stdlib.h> using namespace std; int main() { while (1) { int count=0; int sum=0; while (1) { char c; int temp = 0; c = getchar(); if (c == ‘#‘) return 0; if (c == ‘ ‘) break; count++; if(c!=‘ ‘) temp = count*(c-‘A‘+1); sum += temp; } cout << sum << endl; } }
以上是关于HDUOJ Quicksum的主要内容,如果未能解决你的问题,请参考以下文章