(以“分类:整数处理 ==摘要== {{信息题|Sum Problem|http://acm.hust.edu.cn/vjudge/contest/view.action?cid{{=}}68572#problem/B|1|100|输出格式|0|time=2015-0...”为内容创建页面) |
小 (→摘要: 格式) |
||
第2行: | 第2行: | ||
==摘要== | ==摘要== | ||
{{信息题|Sum Problem|http://acm.hust.edu.cn/vjudge/contest/view.action?cid{{=}}68572#problem/B|1|100|输出格式|0|time=2015-02-06 10:30:54}} | {{信息题|Sum Problem|http://acm.hust.edu.cn/vjudge/contest/view.action?cid{{=}}68572#problem/B|1|100|输出格式|0|time=2015-02-06 10:30:54}} | ||
− | + | *来自寒假练习:[http://acm.hust.edu.cn/vjudge/contest/view.action?cid=68572 Only a signing tool !] B题 | |
− | 原题链接:http://acm.hdu.edu.cn/showproblem.php?pid=1001 | + | *原题链接:http://acm.hdu.edu.cn/showproblem.php?pid=1001 |
+ | |||
==题意== | ==题意== | ||
求1+2+...+n。 | 求1+2+...+n。 |
题目链接 | 难度等级 | 完成状态 | 完成分数 | 最后编辑时间 | 失误原因(初次提交分数) |
---|---|---|---|---|---|
Sum Problem | ★☆☆☆☆ | 答案正确 | 100 | 2015-02-06 10:30:54 | 输出格式(0) |
求1+2+...+n。
1001.cpp代码已折叠
展开折叠内容
|
---|
#include<iostream> using namespace std; int main() { unsigned long long a;//fixed:using ull// while(cin>>a) { unsigned long long t=(a+1)*a>>1; cout<<t<<endl<<endl;//fixed:endl// } return 0; } |